Modifying random.gaussian

Is it possible to modify the random.gaussian function? For example, can I make the mean 500 and SD to be 50?

Multiply the output of the random.gaussian function by your desired standard deviation and then add the desired mean.

2 Likes

If I remember correctly:

random.gaussian * sigma + mu