计算圆周率

时间:2022-08-06 08:07:51
【文件属性】:

文件名称:计算圆周率

文件大小:406B

文件格式:PY

更新时间:2022-08-06 08:07:51

Python

for i in range(1,darts+1): x,y =random.random(),random.random() dist = pow(x**2+y**2,0.5) if dist <=1.0: hits = hits+1 pi = 4 *(hits/darts) print("圆周率值是:{}".format(pi)) print("运行时间是:{:.5f}s".format(time.perf_counter()-start))


网友评论