import array
a = array.array('f', [1,2,3])
print a.mean()
print a.std_dev()Is there a way to calculate the mean and standard deviation on array data? Do I need to import it into a Numeric Array to do this? -- http://mail.python.org/mailman/listinfo/python-list
