vote up 5 vote down star
1

Python's sum() function returns the sum of numbers in an iterable.

sum([3,4,5]) == 3 + 4 + 5 == 12

I'm looking for the function that returns the product instead.

somelib.somefunc([3,4,5]) == 3 * 4 * 5 == 60

I'm pretty sure such a function exists, but I can't find it.

flag

5 Answers

vote up 26 vote down check

Actually, Guido vetoed the idea: http://bugs.python.org/issue1093

But, as noted in that issue, you can make one pretty easily:

import operator
reduce(operator.mul, (3, 4, 5))
link|flag
vote up 15 vote down

There isn't one built in, but it's simple to roll your own, as demonstrated here:

import operator
def prod(lst):
    return reduce(operator.mul, lst)

See answers to this question:

http://stackoverflow.com/questions/493853/which-python-module-is-suitable-for-data-manipulation-in-a-list

link|flag
+1 cleanest answer – Andrew Hare Feb 27 at 16:14
vote up 5 vote down
Numeric.product

( or

reduce(lambda x,y:x*y,[3,4,5])

)

link|flag
He wants a function he can load from a module or library, not writing the function himself. – Nerdling Feb 27 at 16:10
But if there isn't one, he probably still wants the function. – DNS Feb 27 at 16:14
Right, but he needs to know one doesn't exist, since that's his main question. – Nerdling Feb 27 at 16:16
vote up 3 vote down

Use this

def prod( iterable ):
    p= 1
    for n in iterable:
        p *= n
    return p

Since there's no built-in prod function.

link|flag
you must think reduce really is an antipattern :) – zweiterlinde Feb 27 at 16:12
He wanted to know if an existing function exists that he can use. – Nerdling Feb 27 at 16:12
And this answer explainss that there isn't one. – EBGreen Feb 27 at 16:14
@zweiterlinde: For beginners, reduce leads to problems. In this case, using lambda a,b: a*b, it isn't a problem. But reduce doesn't generalize well, and gets abused. I prefer beginners not learn it. – S.Lott Feb 27 at 16:14
wouldn't it be better for consistency to have similar-to-sum single iterable as an input? – SilentGhost Feb 27 at 16:18
show 1 more comment
vote up 1 vote down

If Python had one it would be called product(), unfortunately it doesn't. You can do something like Steve B. mentioned.

link|flag

Your Answer

Get an OpenID
or

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