I'm trying to reload a module I have already imported in Python 3. I know that you only need to import once and executing the import
command again won't do anything.
Executing reload(foo)
is giving this error:
Traceback (most recent call last):
File "(stdin)", line 1, in (module)
...
NameError: name 'reload' is not defined
What does the error mean?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…