一、安装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()))
三、计算结果
一、安装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()))
三、计算结果
posted @ 2019-03-20 22:06 shinawear-- 阅读(8) 评论(0) 编辑 收藏
注册用户登录后才能发表评论,请 登录 或 注册,访问网站首页。
【幸运】99%的人不知道我们有可以帮你薪资翻倍的秘笈!
【推荐】超50万C++/C#源码: 大型实时仿真组态图形源码
【推荐】百度云“猪”你开年行大运,红包疯狂拿
【推荐】55K刚面完Java架构师岗,这些技术你必须掌握
原文地址:https://www.cnblogs.com/0609hlz/p/10569038.html
时间: 2024-10-19 18:27:35