random module is used to generate random numbers in Python. Not actually random, rather this is used to generate pseudo-random numbers. That implies that these randomly generated numbers can be determined.
random.normalvariate()
normalvariate() is an inbuilt method of the
random module. It is used to return a random floating point number with
normal distribution.
Syntax : random.normalvariate(mu, sigma)
Parameters :
mu : mean
sigma : standard deviation
Returns : a random normal distribution floating number
Example 1:
Output :
110.86699628241412
Example 2: We can generate the number multiple times and plot a graph to observe the normal distribution.
Output :
👁 Image
Example 3: We can create a histogram to observe the density of the normal distribution.