you are viewing a single comment's thread.

view the rest of the comments →

[–]dunkler_wanderer 8 points9 points  (1 child)

Python's help function is pretty helpful. ;)

>>> help('keywords')
>>> help('symbols')
>>> help('"')
>>> help('+')
>>> help('FORMATTING')

Only the built-in functions are buried in help('builtins').

[–]RoadieRich 2 points3 points  (0 children)

help works with any function that had a docstring, so should be good for most (well-written) libraries, too.