利用Python計算π的值,並顯示進度條

利用Python計算π的值,並顯示進度條  第一步:下載tqdm 第二步;編寫代碼 from math import * from tqdm import tqdm from time import * total,s,n,t=0.0,1,1.0,1.0 clock() while(fabs(t)>=1e-6):     total+=t     n+=2     s=-s     t=s/n k
相關文章
相關標籤/搜索