Programming is Not Rocket Science, Don't let AI Write Your Code, Fight Back. And if you must use AI, find provenance, and Attribute. Long Live GNU/Linux. Full praise to SSA-Based Compilation.
Monday, 5 January 2026
Python Debugger Survival Skills
There are many times you will need to use the Python debugger to understand why something is not working (oftentimes in a third-party library).
pdb - invokes the debugger
n - moves to the next line (can press carriage return - same effect)
s - steps into the code
It will certainly help you explore and understand more about how the third-party libraries work.
No comments:
Post a Comment