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

L2-020. 功夫传人
L1-039. 古风排版
Innobackup备份过程
MySQL物理备份的过程
数据库表设计
MySQL启动排错
redo的类型和作用
描述undo的三个作用
redo log和binlog的纠缠
- 最新文章
-
hdu 1698 线段树区间更新**懒惰标记
hdu 1754
hdu 1166
poj 2395 prime的递归实现
Codeforces 871C 872E Points, Lines and Ready-made Titles
BZOJ 3112 [Zjoi2013]防守战线
Codeforces 863F Almost Permutation
Codeforces Round #429 (Div. 2/Div. 1) [ A/_. Generous Kefa ] [ B/_. Godsend ] [ C/A. Leha and Function ] [ D/B. Leha and another game about graph ] [ E/C. On the Bench ] [ _/D. Destiny ]
BZOJ 4326 NOIP2015 运输计划
hdu 6141 I am your Father!
Copyright © 2011-2022 走看看
