i have 2 files
#foo.py
global x
def foo():
x = 8
#main.py
from conf import *
if __name__ == "__main__":
foo()
how to get the X value in main.py file i have to use only 2 files here now if print or store x to other variable it has to print 8