码迷,mamicode.com
首页 > 其他好文 > 详细

有进度条的圆周率计算

时间:2020-04-01 10:34:55      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:time   class   rom   时间   style   art   mat   form   range   

from random import random
from time import perf_counter
from tqdm import tqdm
import time
for i in tqdm(range(100)):
    time.sleep(0.1)
    print("\n")
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))

 

有进度条的圆周率计算

标签:time   class   rom   时间   style   art   mat   form   range   

原文地址:https://www.cnblogs.com/modiqiang/p/12610595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!