hello, must of us will not use single bits these days, but at first sight, this looks funny :
>>> a=2 >>> b=6 >>> a and b 6 >>> a & b 2 >>> a or b 2 >>> a | b 6 cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list
hello, must of us will not use single bits these days, but at first sight, this looks funny :
>>> a=2 >>> b=6 >>> a and b 6 >>> a & b 2 >>> a or b 2 >>> a | b 6 cheers, Stef -- http://mail.python.org/mailman/listinfo/python-list