- cross-posted to:
- [email protected]
- learn_programming
- cross-posted to:
- [email protected]
- learn_programming
This month we look at debuggers in Python and how to choose your own debugger instead of relying on the built-in pdb.
You must log in or # to comment.
I sometimes use
gdbwith C and C++, but never really usepdbwith Python… mostly stick with logging (ok,printstatements). This is good information to know though, and I should probably get better at using a debugger with Python.



