码迷,mamicode.com
首页 > 编程语言 > 详细

今天用python完成的是带进度条的圆周率计算

时间:2019-03-18 01:14:52      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:开始   今天   time   sleep   代码   图片   结束   src   math   

代码如下:

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,-))

 

代码运行结果:

技术图片

今天用python完成的是带进度条的圆周率计算

标签:开始   今天   time   sleep   代码   图片   结束   src   math   

原文地址:https://www.cnblogs.com/1234ai/p/10549763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!