| [ Web Proxy ] |
| Viewing: https://www.pythonbyexample.dev/examples/modules | [Back] [Original] |
Modules
Importing a module gives access to its namespace. The math. prefix makes it clear where pi came from.
Source
import math
radius = 3
area = math.pi * radius ** 2
print(round(area, 2))Output
28.27A focused from ... import ... brings one definition into the current namespace. This keeps a common operation concise without importing every name.
Source
from statistics import mean
scores = [8, 10, 9]
print(mean(scores))Output
9Modules are objects too. Their attributes include metadata such as __name__, which records the module's import name.
Source
print(math.__name__)Output
mathImported modules are cached in sys.modules. Later imports reuse the module object instead of executing the file again.
Source
import sys
print("math" in sys.modules)Output
TrueNotes
import module when the namespace improves readability.28.27
9
math
True
Execution time appears here after you run the example.
| Web Proxy Viewer | New URL | Original Page |