其他分享
首页 > 其他分享> > 圆周率

圆周率

作者:互联网

CalPiV2.py
 from random import random
 from time import perf_counter
 DARTS = 1000*1000*10
 hits = 0.0
 start = perf_counter()
 for i in range(1, DARTS+1):
   x, y = random(), random()
   dist = pow(x**2 + y**2, 0.5)
   if dist <= 1.0:
      hits = hits + 1
pi = 4 * (hits/DARTS)
print("圆周率值是: {}".format(pi))
print("运行时间是: {:.5f}s".format(perf_counter()-start))

标签:dist,perf,圆周率,random,DARTS,import,1000
来源: https://www.cnblogs.com/zhouxinpeng/p/15416356.html