import math

print(math.pi)

The math.pi attribute returns the mathematical value of  Pi (π) up to the 15th decimal place.

math.pi
import math

radius = 7

area = math.pi * 7 * 7
print(area)