i just installed VSCode and I used to work on it
but now when I try to 'run without Debugging' with 'Ctrl + F5'.
it seems to opens up 'python debug console' and debug like below image
enter image description here
i was expecting powershell or cmd (defulat terminal) to open without debugging but it doesn't work that way.
This is not a problem. Whether it is F5
or Ctrl+F5
, the debugger will be used, and the configuration in launch.json will be used. The difference between the two is that one can debug, and the other is not. If you set a breakpoint in the code, the former will stop and the latter will not.
If you want to run the script directly instead of debugging, use the triangle button in the upper right corner.