Very new to Python, doing some exercises in a book. I need to produce 800 random numbers between 200 and 600, with a Gaussian distribution. I've got this far:
x = pylab.zeros(800,float)
for x in range (0,800):
y = random.gauss(550,30)
However, isn't this going to produce any number as long as all 800 fit the Gaussian distribution? I need them between a range of 200 to 600.