python重新加载模块 Posted on 2018-03-Sat Edited on 2018-07-Thu Views: Views: 123456789%load_ext autoreload%autoreload 2from foo import some_functionsome_function()42# open foo.py in an editor and change some_function to return 43some_function()43