calculate mean and standard deviation numpy code example
Example: standard deviation in python numpy
a = [1,2,3,4,5]
numpy.std(a) # will give the standard deviation of a
a = [1,2,3,4,5]
numpy.std(a) # will give the standard deviation of a