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