有进度条圆周率计算
from random import random
from math import sqrt
from time import clock
DARTS=1000000
hits=0.0
clock()
for i in range(1,DARTS+1):
x,y=random(),random()
dist=sqrt(x**2+y**2)
if dist<=1.0:
hits=hits+1
pi=4*(hits/DARTS)
print("pi值是{}.".format(pi))
print("运行的时间是:{:.5f}s".format (clock()))
posted on 2019-03-19 20:51 陈立农不知名圈外女友 阅读(146) 评论(0) 收藏 举报
浙公网安备 33010602011771号