python重新加载模块

1
2
3
4
5
6
7
8
9
%load_ext autoreload
%autoreload 2

from foo import some_function
some_function()
42
# open foo.py in an editor and change some_function to return 43
some_function()
43
请作者喝一杯咖啡☕️