我使用的是Python 3.2。尝试:
xor = lambda x,y: (x+y)%2
l = reduce(xor, [1,2,3,4])
并得到以下错误:
l = reduce(xor, [1,2,3,4])
NameError: name 'reduce' is not defined
尝试将reduce打印到交互式控制台-得到这个错误:
NameError: name 'reduce' is not defined
reduce在Python 3.2中真的被删除了吗?如果是这样的话,另一种选择是什么?