Python Workflow Notes
-
set breakpoints with
breakpoint()
- use
n
to continue execution until the next line - use
s
to execute the current line and stop at the first possible occasion
- use
-
reimport library or file with
reload()
fromimportlib
library