python3中reload的使用方法 Python2 中可以直接使用reload(module)重载模块。 Pyhton3中需要使用如下方式: from importlib import reload reload(module)