Goodnight! There is a file Myfile1.py, in which there are functions with global variables
class setup(): def 00(self): global abc abc = "hello" and there is a file Myfile2.py, in which this variable should be used
class dosmth(): def 01(self): print abc Question: how do I import and run the function in myfile2.py?