# import only pi from math module from math import pi print("The value of pi is", pi)
# import statement example # to import standard module math import math print("The value of pi is", math.pi)