Nowadays, we often take for granted the excellent debuggers built into our favorite IDEs. But how do you debug your Python code when you donβt have the luxury of using an IDE?
pdb, short for Python DeBugger, is a module for interactive source code debugging. Itβs built into the Python Standard Library, so itβs always accessible to you. Because it runs in the command line, itβs especially helpful when youβre developing on remote systems.
In this course, youβll learn how to perform the most common debugging tasks using pdb, including setting breakpoints, stepping through code, viewing stack traces, creating watch lists, and more.
Free Bonus: Click here to get a printable "pdb Command Reference" (PDF) that you can keep on your desk and refer to while debugging.



