1. 程式人生 > >python3中reduce()的呼叫

python3中reduce()的呼叫

python3中取消了全域性名稱空間中的reduce()函式,將reduced()放到了functools模組中,要使用reduce()的話,要先載入functools.

from functools import reduce
print(reduce(lambda x, y: x + y, [1, 3, 4, 6, 8]))