作用:解决修改模块后,重新加载模块生效
python2直接使用
reload(sys)
python3
from imp import reload
python3与python不同-reload()
原文:http://www.cnblogs.com/orochi/p/7818278.html