Programming is Not Rocket Science, Don't let AI Write Your Code (or Essays), Fight Back. If you must use AI, find provenance, and Attribute. GNU/Linux never loses relevance. AI makes it more powerful. C++ is Back.
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