Hi,
If I have a file myfile.py, which imports Class1 from file.py and file.py contains imports to different classes in file2.py, file3.py, file4.py.
In my myfile.py, can I access these classes or do I need to again import file2.py, file3.py etc...
My question is whether python automatically add all the imports included in the file I imported, and can I use them automatically.
Thank you. Bala