求Π的精确值

from math import atan
pi = atan(1.0)*4
print(pi)
import math
print(math.pi)
3.141592653589793

你可能感兴趣的:(求Π的精确值)