Importing Specific Functions

How do you import one function from a module?

use from with import to import a specific function from a module rather than the entire module. Then use the function's name as if it were defined within the program.

How do you import several individual functions from a module?

To import multiple functions from one module, separate them with commas.