Python Interactive window
VSCode上でJupyter NotebookみたいにPythonコードを実行できる
https://code.visualstudio.com/docs/python/jupyter-support-py
# %%とコメントつけた部分がセルになる
shift-enterで実行できる
Jupyter Notebookと異なり、.pyで管理できる
code:py
# %%
msg = "Hello World"
print(msg)
# %%
msg = "Hello again"
print(msg)
https://gyazo.com/e1880bd22a5b9631d4aed97c69ba0339