标准正态分布 def normal_cdf(x,mu=0,sigma=1): p=math.sqrt(math.pi*2) return math.exp(-(x-mu)**2/(2*sigma**2))/(p*sigma) Paste_Image.png