Code python pour calculer la probabilité de variable aléatoire

import math
print 0.5 * (1 + math.erf((x - mean)/math.sqrt(2 * standard_dev**2)))
Fantastic Frog