First page Back Continue Last page Overview Graphics

Python Modules

Modules usually correspond to Python program files or C extensions, i.e. each Python file is a module.

Usage of existing modules:

If you want to use a module, they have to be included with import:

import math

from math import sin, cos

or

from math import *

import math as m