I am completely new to python and I'm just trying it out. Something is confusing me for hours until I finally made this little test.
I have 2 scripts, a.py and b.py
#a.py
num = 3
#b.py
import a
print(a.num)
When b.py is ran, this prints 3. But if I change the value of num to any other number, the output is still 3.
How can I resave / update my script files?