Interrupting Python scripts and Jupyter Notebook on VS Code

Question:

I am running a python script on VS code (*.py). Simultaneously, I am running a cell on Jupyter Notebook on VS Code. If I interrupt the kernel of the jupyter cell, will this interrupt the procedure on the py script?

Asked By: Stelios

||

Answers:

No, they are independent.

The kernel in ipynb does not affect the terminals used by Python

Answered By: MingJie-MSFT