# import only pi from math module
from math import pi
print("The value of pi is", pi)
import MODULE_NAME
from time import sleep as stop # changes the name of the function to anything you want
print("hi")
stop(3) # works the same as the function without the as
print("bye")
# import statement example
# to import standard module math
import math
print("The value of pi is", math.pi)