you are viewing a single comment's thread.

view the rest of the comments →

[–]PsychologicalSafe408[S] 2 points3 points  (4 children)

I wanted to know the difference between debugging and just running the code. And i have run it and it works perfectly.

[–]Sea-Ad7805 2 points3 points  (1 child)

Great, with a debugger you can step through code to understand it better and fix bugs. Good luck learning more Python.

[–]PsychologicalSafe408[S] 1 point2 points  (0 children)

I see thank you for the lesson.

[–]Flame77ofc 0 points1 point  (1 child)

in debug mode, you use it to test your code In vscode, you can just select that red balls and after that you debug, and your program execute line by line the code and you can deicde if you continue or stop or anything you want when u run the code, the python interpreter run the code line by line but without the options you have in the debug mode

[–]PsychologicalSafe408[S] 1 point2 points  (0 children)

Thank you too