[python] What's the function like sum() but for multiplication? product()?

Numeric.product 

( or

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

)