I don't know how explain what I want do so I think with code example you can understand.
y.py
y = 0
import printy
printy.py
import y
print y
NameError: name 'y' is not defined
When I call scripts with import works perfect but I want to know how I can share variables.
y.py
import printy
printy.py
y = 0
print y
result = 0