Modules are python files which contain different function definitions , variables which we can reuse, it should always end with a .py extension.. Python itself is having a vast module library with the default installation. We are going to use some of them. To use a module you have to import it first.
>>> import math
>>> print math.e
2.71828182846
We are going to learn more about modules on the Modules chapter.