eof

Boris Borcic bborcic at gmail.com
Mon Nov 26 10:15:25 EST 2007


hdante at gmail.com wrote:
> def xor(a, b):
> 	return a and not b or b and not a


 >>> from operator import xor
 >>> help(xor)
Help on built-in function xor in module operator:

xor(...)
     xor(a, b) -- Same as a ^ b.




More information about the Python-list mailing list