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?

link|improve this question

79% accept rate
FWIW, you could also use operator.xor (and truncate the result if you are only interested in the lowest bit). – delnan Dec 31 '11 at 16:29
reduce is not the right tool. – JBernardo Dec 31 '11 at 16:34
2  
@JBernardo, what is the right tool? – Sergey Dec 31 '11 at 16:35
a for loop... – JBernardo Dec 31 '11 at 16:40
feedback

1 Answer

up vote 9 down vote accepted

It was moved to functools.

link|improve this answer
nooooooo! really? why? – julio.alegria Dec 31 '11 at 16:48
7  
@julio.alegria: Because Guido hates it. – Ignacio Vazquez-Abrams Dec 31 '11 at 16:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.