romach
4/16/2017 - 3:02 PM

Imports

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 *