我看到在
this useful Q&A
即可以使用
reload(whatever_module)
或者在Python 3中使用
imp.reload(whatever_module)
。
我的问题是,如果我说
from whatever_module import *
是为了进口呢? 那么当我使用
reload()
时,我就没有
whatever_module
可以参考了。你们会不会因为我把整个模块扔到全局命名空间而大骂?)