reduce函数: from functools import reduce listn = [1,2,3,4,5] print(reduce(lambda x,y:x+y,listn)) 上述代码表示listn所有值连加。