Python Programming - Debugging - Discussion

Discussion Forum : Debugging - General Questions (Q.No. 4)
4.
What does the Python step command do in a debugger like pdb?
Skips the current line of code
Steps into a function or method call
Exits the debugger
Continues execution until the next breakpoint
Answer: Option
Explanation:
In a debugger like pdb, the step command is used to step into a function or method call, allowing you to debug the code inside that function.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.