Jupyter Magic Memory

%: line magic, %%cell magic Repeat Command: %recall Write cell content into a file: %%writefile file.py To autoreload your pyfile: %load_ext autoreload %autoreload 2 from yourfile import yourFunction https://ipython.org/ipython-doc/3/config/extensions/autoreload.html Use…

0 Comments