def multiply(a,b): return a*b
from functools import reduce def multiply (a,b): return reduce(lambda a,b:a*b)
Loading collection data...