[python]代码库
#更新了很多内容,会将计算结果保存到桌面,并且预算速度增加
print("老猫算π Ver:1.0__Fast+_2021-2-14 1.0\n更新:1.0 浓缩代码,更加快速的计算,更加精准的预测时间\n----------------------------------------------------------------")
mube = int(input ("输入算π的个数(建议不超过100000)>>"))#输入目标算的π数,将文本转换成数字
time =round(mube/3846, 1)#大约每秒算3846次,预算计算时间保留一位小数
print("正在计算,大概需要" + str(time) + "秒。请耐心等待")
a = 0
while a != mube:
a=a+1
with open('C:\\Users\Administrator\Desktop\pai.txt','a',encoding='utf-8') as b:#创建pai.txt
b.write(str(a)+"π"+"="+str (round((a+1)*3.14, 2))+"\n")#写入内容
input("计算完毕,在桌面上查看,回车键关闭程序")