I'm trying to use the import keyword to use a variable from another python script. The problem is that each time I run script_two, it also runs script_one. I only want to run script two. Why is it doing this?
script_two.py:
from script_one import number
print(number)
script_one.py:
number = 1
print(number + 1)