一、安装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="") #这里的i/10*100指每10%显示一次
sleep((clock())/100)#用执行程序的总时间来算出进度条间隔的时间
print("pi的值{}.".format(pi))
print("运行时间:{:.5f}s".format(clock()))
三、计算结果

该博客介绍了使用Python计算圆周率的相关内容。首先讲解了利用cmd命令提示符进入Python所在文件盘,通过pip install tqdm安装tqdm库,接着提到输入整合进度条与圆周率的代码,最后给出计算结果。

462

被折叠的 条评论
为什么被折叠?



