Which command is used in PDB (Python Debugger) to continue execution until the next breakpoint is encountered?

  • c
  • continue
  • go
  • next
In the Python Debugger (PDB), you can use the continue command to resume execution of your code until the next breakpoint is encountered. This allows you to step through your code and examine its behavior.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *