I'm using Python 3.2. Tried this:
xor = lambda x,y: (x+y)%2
l = reduce(xor, [1,2,3,4])
And got the following error:
l = reduce(xor, [1,2,3,4])
NameError: name 'reduce' is not defined
Tried printing reduce into interactive console - got this error:
NameError: name 'reduce' is not defined
Is reduce really removed in Python 3.2? If that's the case, what's the alternative?
operator.xor(and truncate the result if you are only interested in the lowest bit). – delnan Dec 31 '11 at 16:29reduceis not the right tool. – JBernardo Dec 31 '11 at 16:34forloop... – JBernardo Dec 31 '11 at 16:40