>>>import math >>> math.pi 3.141592653589793
import math #importing the math functions pi = math.pi #getting the value of pi print(pi) #printing the result
import math value_Pi = math.pi print(value_Pi) // 3.141592654....