Debugging
Use the help()
function to view documentation for a given type of object or datatype:
Use the dir()
function to see what methods you can call on a given object.
Interactive Console
Reference: https://docs.python.org/3/library/functions.html?highlight=breakpoint#breakpoint.
As of a recent version of Python, you should be able to use the built-in breakpoint()
function to drop an interactive breakpoint on any line of code. Once you run the script, it will stop at the breakpoint to facilitate further investigation:
Last updated