Nilai Python Pi

#import pi function from math module
from math import pi

#Show pi value
print(pi)
Loyto