More about import
Importing loads a module into memory. For that reason, changing a file while it's running will not change the running program. Likewise, if you import a file into the interactive interpreter, it won't know about changes to the file. # timer.py import schedule import time…
Continue reading...