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?
import aand then call functiona.x()from a import *should work fine, unless you have, for example, defined__all__inasomehow. If that is not the case then we'll need more information.