Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 313 Bytes

18-help.md

File metadata and controls

14 lines (10 loc) · 313 Bytes

Commands used in the Egghead.io Series Intro to Python

Lesson Eighteen - Invoke the built-in help syste with python's dir and help methods

Display a list of methods and operators for a string in Python:

dir('foo')

Display the help page for a given method:

help("foo".upper)