Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 451 Bytes

File metadata and controls

24 lines (15 loc) · 451 Bytes

Python Language Overview

Debugging

Use the help() function to view documentation for a given object or datatype:

help(str)

Use the dir() function to see what methods you can call on a given object.

dir("Hello")

Interactive Console

Various modules and third-party packages offer interactive debugging capabilities: