Python 3 functools.如果没有给出文本列表,则Reduce返回0



我正在尝试在python中减少并在期望其他值时获得0:

In [1]: from functools import reduce
In [2]: reduce( (lambda x, y: x * y), [1, 2, 3, 4] )
Out[2]: 24
In [3]: def multiply(x, y): return x * y
In [4]: reduce( multiply, [1, 2, 3, 4] )
Out[4]: 24
In [5]: reduce( multiply, range(5) )
Out[5]: 0
In [6]: reduce( multiply, list(range(5)) )
Out[6]: 0
[...]    
In [11]: L = list(range(5))
In [12]: L
Out[12]: [0, 1, 2, 3, 4]
In [13]: reduce(multiply, L)
Out[13]: 0

为什么我得到0时,不输入文字列表?如何减少任意列表?我错过了什么?

Python的range0开头,而不是10乘以任何东西都会导致0你总是得到。

相关内容

  • 没有找到相关文章

最新更新