Chapters
Python114 chapters

ReferenceBuilt-in functions

help()

Prints the documentation for an object, which is often faster than searching the web.

Signature

help(object)

Parameters

NameMeans
objectany object, function or module

Returns

Nothing; it prints.

Example

Python
def area(w, h):
    """Return the area of a rectangle."""
    return w * h

print(area.__doc__)

Output

Return the area of a rectangle.

See also