Re: Bitwise expression

2007-01-10 Thread Hendrik van Rooyen
Gigs_ [EMAIL PROTECTED] wrote: Now is all clearer thanks to [EMAIL PROTECTED] and Hendrick van Rooyen Contrary to popular belief in the English speaking world - c in Hendrik False There is no c in Hendrik : - )- Hendrik -- http://mail.python.org/mailman/listinfo/python-list

Re: Bitwise expression

2007-01-09 Thread Hendrik van Rooyen
Gigs_ [EMAIL PROTECTED] wrote: Can someone explain me bitwise expression? few examples for every expression will be nice x y Left shift x y Right shift x y Bitwise AND x | y Bitwise OR x ^ y Bitwise XOR (exclusive OR) ~x Bitwise negation The short, and possibly weird, but true

Re: Bitwise expression

2007-01-09 Thread Gigs_
Hendrik van Rooyen wrote: Gigs_ [EMAIL PROTECTED] wrote: Can someone explain me bitwise expression? few examples for every expression will be nice x y Left shift x y Right shift x y Bitwise AND x | y Bitwise OR x ^ y Bitwise XOR (exclusive OR) ~x Bitwise negation The short

Bitwise expression

2007-01-08 Thread Gigs_
Can someone explain me bitwise expression? few examples for every expression will be nice x y Left shift x y Right shift x y Bitwise AND x | y Bitwise OR x ^ y Bitwise XOR (exclusive OR) ~x Bitwise negation thanks people -- http://mail.python.org/mailman/listinfo/python-list

Re: Bitwise expression

2007-01-08 Thread Richard Townsend
On Mon, 08 Jan 2007 22:32:12 +0100, Gigs_ wrote: Can someone explain me bitwise expression? few examples for every expression will be nice http://wiki.python.org/moin/BitwiseOperators -- Richard -- http://mail.python.org/mailman/listinfo/python-list

Re: Bitwise expression

2007-01-08 Thread [EMAIL PROTECTED]
Gigs_ wrote: Can someone explain me bitwise expression? few examples for every expression will be nice x y Left shift x y Right shift x y Bitwise AND x | y Bitwise OR x ^ y Bitwise XOR (exclusive OR) ~x Bitwise negation thanks people Here's some examples: ##What is BINARY