I need to generate 30 random numbers using standard deviation and mean. I tried a few mathematical formulas and expressions but didn't get what I wanted. Can you help me ?
def create_yemek_list(x):
mean= 120
std = 1
x = np.linspace(mean+ 3 * std, mean- 3 * std, 100)
return x