# ShowNormal.py # Charles Van Loan # January 1, 2015 """ This module affirms that random.normalvariate(mu,sigma) generates random numbers from the normal distribution with specified mean and standard deviation. """ from math import sqrt from random import normalvariate as randn mu = input('Enter the mean: ') sigma = input('Enter the standard deviation: ') N = input('Enter the number of trials: ') sum1 = 0 sum2 = 0 k = 0 while k