Autoreload changes to python files when working in VSCode's interactive Window

April 2021

%reload_ext autoreload
%autoreload 2

Can also add this to settings.json:

"jupyter.runStartupCommands": [
    "%load_ext autoreload", "%autoreload 2"
],