Is It Possible To Replace A Python File While Its Running
I have a single python file that takes about an hour to run. Can I replace the whole file while its running without issues? I am aware if this question it does not address the conc
Solution 1:
Yes. The .py
file is read into memory, compiled and run without further access.
Post a Comment for "Is It Possible To Replace A Python File While Its Running"