Since Python 3.7 you can use a built-in breakpoint function. If this is not available, you can use
import pdb
pdb.set_trace()
instead.
If you want to execute the next line you can try n (next) instead of s (step).
Since Python 3.7 you can use a built-in breakpoint function. If this is not available, you can use
import pdb
pdb.set_trace()
instead.
If you want to execute the next line you can try n (next) instead of s (step).