Is there a built-in or standard library method in Python to calculate the arithmetic mean (average) of a list of numbers?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

I am not aware of anything in the standard library. However, you could use something like:

float(sum(l))/len(l) if len(l) > 0 else float('nan')

In numpy, there's numpy.mean().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.