I'm new to python (and to programming in general) and here I have a newbie question:
let's say I have this python script "script.py" and I load it in the interpreter by typing
import script
and then I execute my function by typing:
script.testFunction(testArgument)
OK so far so good, but when I change "script.py", if I try to import again the script doesn't update. I have to exit from the interpreter, restart the interpreter, and then import the new version of the script for it to work.
What should I do instead?
Thanks in advance.