Python2 中可以直接使用reload(module)重载模块。 Pyhton3中需要使用如下两种方式: 方式(1) >>> from imp >>> imp.reload(module) 方式(2) >>> from imp import reload >>> reload(module)