Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 10: Mastering Python Modules!

Instruction

The help Function

Module Documentation The built-in help() function provides a summary of a module's functions and data. Calling help(module_name) in a shell is a convenient way to learn about a module. Example: Output of help(colors) in a Shell The documentation below is automatically generated from the docstrings in colors.py. help(colors) Help on module colors: NAME colors - Functions for working wit...