Python Debugger : pdb
# pdb : Python Debugger
import pdb
pdb.set_trace() # to set a break-point at a given point in the program.
q : to move out from debugger mode.
# pdb : Python Debugger
import pdb
pdb.set_trace() # to set a break-point at a given point in the program.
q : to move out from debugger mode.