When using Python’s PDB, the command ____ is used to step into a function call.

  • next
  • step
  • step_in
  • step_into
In Python's PDB (Python Debugger), the step_into command is used to step into a function call during debugging. It allows you to go into the called function and debug its execution.
Add your answer
Loading...

Leave a comment

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