Python debugging cheat sheet

· rrees's blog


Python debugging cheat sheet #

Add the built-in breakpoint() call to any Python code to start the debugger.

Keys #

ll : Shows where you are in the code

h : Help

pp : pretty prints the value of the identity

s : step through the code

n : run to next breakpoint

c: continue to execute code