点击运行
from scipy.constants import pi as spi from math import pi as mpi print("sciPy - pi = %.16f"%spi) print("math - pi = %.16f"%mpi)
运行结果 :
正在执行...