Home > OS >  Plugin or Settings for Python/Pycharms for Code Editor
Plugin or Settings for Python/Pycharms for Code Editor

Time:11-28

is there a plugin or way that if i press the run button pycharms starts to highlight the code that is currently running step by step so i can see what pycharms is doing

I looked into the pycharms editor settings but didnt really find anything that would help me

CodePudding user response:

I think that what you are referring if the debugger tool running the script line by line or just putting breakpoints to check specific values. check this

CodePudding user response:

for me there is two possibility :

-use thonny IDE (i dont like it but the debug mod is interresting for that)

-use the tutor module (https://pythontutor.com if you want navigator version)

i only know those solution.

  • Related