On Fri, Aug 22, 2008 at 6:30 PM, defn noob <[EMAIL PROTECTED]> wrote:
> What does >> and << do?

Normally they are bitwise operators:
>> Shifts bits right
<< Shifts bits left

print 1 << 3
8

because 8 = 00001000 in binary

Regards
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to