Search⌘ K
AI Features

import this

Explore how to import Python modules using the import keyword. Understand accessing functions from imported modules like math, and learn the syntax for calling methods to apply these functions in your programs.

We'll cover the following...

Python provides the import keyword for importing modules. Let’s give it a try:

Python 3.5
import this

If you run this code in your interpreter, you should see something like the following as your ...