有进度圆周率计算
Posted dongyichen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有进度圆周率计算相关的知识,希望对你有一定的参考价值。
from math import* from time import* scale=15 p=1 q=2 print("执行开始".center(scale//2, "-")) start = perf_counter() for i in range(scale+1): p=sqrt((1-sqrt(1-pow(p,2)))/2) q=q*2 a = ‘*‘ * i b = ‘.‘ * (scale - i) c = (i/scale)*100 dur = perf_counter() - start print(" {:^3.0f}%[{}->{}]{:.2f}s".format(c,a,b,dur)) sleep(0.1) Pi=p*q print("Pi值是{}".format(Pi)) print(" "+"执行结束".center(scale//2,‘-‘))
以上是关于有进度圆周率计算的主要内容,如果未能解决你的问题,请参考以下文章