Say i have a python file called a.py
with the functions x,y,z.
I want to import them to a new file called b.py
I tried: from a import *
AND from a import all
with no luck.
I can just do it separately: from a import x
, from a import y
....
How can i import them ALL at once?