Answers for "how to simulate normal random variables python"

1

how to generate random normal number in python

from scipy.stats import norm
data = norm.rvs(loc=52, scale=4.5, size=100)
Posted by: Guest on May-11-2021
1

how to make a random variable in python

import random
value = randint(1,10)
#1 and 10 represent the range for your random value
print(value)
Posted by: Guest on March-25-2020

Code answers related to "how to simulate normal random variables python"

Python Answers by Framework

Browse Popular Code Answers by Language