Whenever I run code by pressing Ctrl + F5 vscode will automatically swap to the python debug console is there a way that I can stop this?
Asked
Active
Viewed 19 times
0
-
That's exactly what ctrl-F5 does; it runs your script using just the regular Python executable, which will open a console unless you do something like [this](https://stackoverflow.com/questions/764631/how-to-hide-console-window-in-python). What are you expecting/wanting to happen? Where should the script output go? – Random Davis Oct 20 '21 at 18:35
-
i explained my problem badly what happens is it will swap off of the debug console or regular cmd and open a terminal called python debug console – BadGuyBuster Oct 20 '21 at 18:38
-
I am afraid it's impossible. And it's a good classify of consoles. – Steven-MSFT Oct 21 '21 at 02:41