Discuss / Python / 2
from functools import reducedef prod(x,y):   return x*yn = [3,5,7,9]print(reduce(prod,n))

  • 1

Reply