This is an explanatory article related to my talk at MUPy — Become a pdb power-user. What’s pdb?pdb is a module from Python’s standard library that allows us to do things like: Stepping through source codeSetting conditional breakpointsInspecting stack traceViewing source codeRunning Python code in a contextPost-mortem debuggingWhy pdb?It is not necessary to use pdb all the time, sometimes we can
