每当我尝试在 python 版本 3.3.2 中重新加载 python 模块时,我都会收到此错误代码
>>> import bigmeesh
>>> bob=bigmeesh.testmod()
this baby is happy
>>> imp.reload(bigmeesh)
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
imp.reload(bigmeesh)
NameError: name 'imp' is not defined
我试图研究,但仍然没有得到答案。