I have this file, abc.py
:
def asb():
print("Hello, ")
def xyz():
print("World!")
In my main.py
file,
from abc import asb
from abc import xyz
I want to import both asb
and abc
from abc.py
without using separate lines.
I assume it's going to be something like this:
from abc import asb and xyz