I am writitng my python code in jupyter notebook. When i try to debug the code by importing pdb library and writing pdb.set_trace() in the code and running it, I just get ipdb prompt which allows me to print and see variable values but doesn't let me see breakpoints and exact code line which has the error. I am unable to use n,c functions.
I have tried using breakpoint() and %debug but its the same, i still dont get the interactive bit where i can run the code step by step and see where the error is.