用python计算圆周率并用进度条显示计算进度。

一、安装tqdm库

1、利用cmd命令提示符,进入python所在的文件盘

2、输入 pip install tqdm 即可安装tqdm库

二、输入代码

from random import random
from math import sqrt
from time import *
from tqdm import tqdm
DARTS=10000000
hits=0.0
clock()
for i in range(1,DARTS+1):
    x,y=random(),random()
    dist=sqrt(x**2+y**2)
    if dist <=1.0:
        hits=hits+1
pi=4*(hits/DARTS)
for i in tqdm(range(10)):
    print("\r{:3}%".format(i/10*100),end="") 
    sleep((clock())/100) 
print("pi的值{}.".format(pi))
print("运行时间:{:.5f}s".format(clock()))

三、运行结果



 

猜你喜欢

转载自www.cnblogs.com/gsd-tt/p/10568843.html