from scipy.constants import pi as spi
from math import pi as mpi
print("sciPy - pi = %.16f"%spi)
print("math - pi = %.16f"%mpi)