python利用Monte Carlo方法计算圆周率

python利用Monte Carlo方法计算圆周率

from random import random


def cal(n):
    count = 0
    for i in range(1, n):
        x = random()
        y = random()
        if x*x + y*y <= 1:
            count += 1
    print("pi:", 4*count/n)


if __name__ == '__main__':
    cal(10000000)

python利用Monte Carlo方法计算圆周率

参考文献

蒙特卡洛(Monte Carlo, MCMC)方法的原理和应用[https://www.bilibili.com/video/BV17D4y1o7J2?p=3&spm_id_from=pageDriver]

上一篇:媒体元素


下一篇:mysql - 索引及优化(全)