Imports
# module - file that contains definitions (variables and functions)
# that you can use once it is imported.
# generic import
import math
print math.sqrt(25)
# function import
from math import sqrt
print sqrt(25)
# universal import
from math import *