I am using Jupiter and trying to learn how to debug. However, I cannot complete exit from the debugging mode.
for i in np.arange(1,10, 0.01):
a = someFunc(i)
# I want to check the value of "a" in each iteration
# here!
from IPython.core.debugger import Tracer; Tracer()() #this one triggers the debugger
If I run this code and type "q" or "exit" in the debugging ipdb prompt, it just keeps running the code until the next break point, and I cannot stop debugging. How can I stop debugging? I looked into the documentation, but could not find any other command than "q".