Python Notebook Breakpoints
from IPython.core.debugger import Pdb;
#Insert the above line wherever you want to add the breakpoint
Pdb().set_trace()
S3NS4
from IPython.core.debugger import Pdb;
#Insert the above line wherever you want to add the breakpoint
Pdb().set_trace()