-1

I am wondering if there is a python debugger as powerful as gdb, for example at setting breakpoints, stepping into functions, and the like. I have been working with gdb in c and assembly and it has been excellent. SO is there a python debugger like so?

Dark Eagle
  • 107
  • 3
  • 10

1 Answers1

1

Yes, pdb might be what you are looking for.

There are many resources for how to use it. See this post for some resources: Getting started with the Python Debugger pdb.

Community
  • 1
  • 1
arewm
  • 649
  • 3
  • 12