Python Debugging in VS Code

preview_player
Показать описание


{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File (Integrated Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
Рекомендации по теме
Комментарии
Автор

i have problem, i did every thing you did in video, but whenever I set a breakpoint in my program and run the debugger, it just seems to run the whole program and exit. It doesn't stop or enter any kind of debugging stage. What am I doing wrong?

khaledkhan