[Python-ideas] Pre-PEP: adding a statistics module to Python

MRAB python at mrabarnett.plus.com
Wed Aug 7 18:48:17 CEST 2013


On 07/08/2013 17:28, Ryan wrote:
> What if it was an option. i.e.
>
> statistics.sum(myiter, listconv=True)
>
[snip]
Why have an option? You can just do this:

statistics.sum(list(myiter))



More information about the Python-ideas mailing list