Importing Functions

How do you import an entire module and use each of the functions in the module?

Use the import keyword to import a module and access its functions. After importing, use any module function by providing the module's name, a dot, and the function's name.

How do you give a module an alias when importing it?

Use as to give a module an alias and use shorter function calls.