Learn Before
Concept
Some useful commands for the Python Debugger
p : prints value of a variable
n/next : Continue execution until the next line in the current function is reached or it returns.
s/step : Execute the current line and stop at the first possible occasion (either in a function that is called or in the current function).
cont/continue : Continue execution and only stop when a breakpoint is encountered.
h/help : get a list of available commands
q/quit : exit debugging session
0
1
Updated 2021-02-22
Tags
Python Programming Language
Data Science