本文主要是介绍python 学习 蒙特卡洛求π DAY9,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import randomimport math
import time
s = eval(input("请输入取点总数:"))
hits = 0.0
start = time.perf_counter()
for i in range(s):
x,y = random.random(),random.random()
dist = math.sqrt(x**2 + y**2)
if dist <= 1.0:
hits += 1
else:
continue
pi = hits/s*4
t = time.perf_counter() - start
print("pi是{0},运行时间是{1:5.5f}s".format(pi,t))
这篇关于python 学习 蒙特卡洛求π DAY9的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!