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

用python计算圆周率PI

时间:2020-11-01 20:42:42      阅读:29      评论:0      收藏:0      [点我收藏+]

标签:pre   inf   mat   style   rgb   mamicode   计算   orm   技术   

def PI(n):
    pi=0
    for k in range(n):
        pi += 1/pow(16,k)*(4/(8*k+1)-2/(8*k+4)-1/(8*k+5)-1/(8*k+6))
    return pi
import time
scale = 20
print("执行开始".center(scale+4,-))
for i in range(scale+1):
    a=* * i
    b=. * (scale-i)
    c=(i/scale)*100
    pi = PI(1000)
    print("{:^3.0f}%[{}->{}]".format(c,a,b))
    time.sleep(0.1)
print("圆周率值是:{}".format(pi))
print("执行结束".center(scale+4,-))

技术图片

用python计算圆周率PI

标签:pre   inf   mat   style   rgb   mamicode   计算   orm   技术   

原文地址:https://www.cnblogs.com/o111-/p/13847004.html

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