#CalPiV2.py
from random import random
from time import perf_counter
DARTS = 1000*1000
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))

Python-计算圆周率--random库

Python-计算圆周率--random库

Python-计算圆周率--random库

Python-计算圆周率--random库

Python-计算圆周率--random库

Python-计算圆周率--random库

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-25
  • 2021-12-18
猜你喜欢
  • 2021-08-08
  • 2021-06-18
  • 2022-12-23
  • 2022-01-01
  • 2022-12-23
相关资源
相似解决方案