I\'m sure this is very simple but I\'ve been unable to get it working correctly. I need to have my main python script call another python script and pass variables from the
use the following script:
first.py:
x=5
second.py
import first print first.x
this will print the x value. Always imported script data should be referenced with the script name, like in first.x
first.x