What is the command to continue execution until the next breakpoint is encountered when using the Pdb debugger?

  • continue
  • jump
  • next
  • step
The continue command is used to resume execution until the next breakpoint is encountered in the Pdb debugger. It allows you to skip over code sections you're not interested in debugging.
Add your answer
Loading...

Leave a comment

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