pi i python code example
Example 1: pi python
# import built in math module
import math
# Showing usage of pi function
print(math.pi)
Example 2: pi in python
import math #importing the math functions
pi = math.pi #getting the value of pi
print(pi) #printing the result