用进度条表示求圆周率的进程
Posted wxyzzj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用进度条表示求圆周率的进程相关的知识,希望对你有一定的参考价值。
用python算圆周率
1.准备第三方库pip
3.用python语言编写出求圆周率到任意位的程序如下:
from math import * from tqdm import tqdm from time import * total,s,n,t=0.0,1,1.0,1.0 clock() while(fabs(t)>=1e-6): total+=t n+=2 s=-s t=s/n k=total*4 print("π值是{:.10f} 运行时间为{:.4f}秒".format(k,clock())) for i in tqdm(range(101)): print(" {:3}%".format(i),end="") sleep((clock())/100)#用执行程序的总时间来算出进度条间隔的时间
以上是关于用进度条表示求圆周率的进程的主要内容,如果未能解决你的问题,请参考以下文章