首页 > 其他 > 详细

有进度条圆周率计算

时间:2020-03-25 16:25:21      阅读:42      评论:0      收藏:0      [点我收藏+]
import math
import time 
scale=14
s,m,=1,2
print("执行开始".center(scale//2, "-"))
start = time.perf_counter()
for i in range(scale+1): 
    s=math.sqrt((1-math.sqrt(1-pow(s,2)))/2)
    m=m*2
    a = ‘*‘ * i 
    b = ‘.‘ * (scale - i)
    c = (i/scale)*100 
    dur = time.perf_counter() - start 
    print("\r{:^3.0f}%[{}->{}]{:.2f}s".format(c,a,b,dur))
time.sleep(0.1)
Pi=s*m
print("Pi值是{}".format(Pi))
print("\n"+"执行结束".center(scale//2,‘-‘))

有进度条圆周率计算

原文:https://www.cnblogs.com/satoshi3104/p/12566440.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!