Changing the Default Debugger in Python
Python comes with a built in debugger called pdb. You drop the line below at any part or your code, and a debugger will show up: import pdb; pdb.set_trace() Python 3.7 introduced the debugger() keyword, allowing you to simplify the code above and initiate a debugger with...