importation python
from random import *
Lovely Lark
from random import *
# import statement example
# to import standard module math
import math
print("The value of pi is", math.pi)
# import only pi from math module
from math import pi
print("The value of pi is", pi)