unsigned int \ long
Terry Reedy
tjreedy at udel.edu
Wed Aug 13 02:42:35 EDT 2003
"Roman Yakovenko" <romany at actimize.com> wrote in message
news:mailman.1060753100.20465.python-list at python.org...
>Hi. I need to work with integer as unsigned integer, but
>I can't find documentation how can I do it.
>Some reference on this will be appreciated.
>For example (unsigned int)(-1) == 0xFFFFFFFF.
Python does not have a separate count type. Just use 0 and positive
ints and longs.
TJR
More information about the Python-list
mailing list