곱하기도 가능.

from functools import reduce

result = reduce(lambda x, y: x+y, [1, 2, 3, 4, 5], 100)
# ((((100+1+2)+3)+4)+5)
print(result)

# 115