What everyone else says above is true - 0xff is the same as 255 decimal. If you need to be able to maintain the string representation for some other purpose, you can do something like this:
class VerboseInt(object):
def __init__(self, val):
'''
pass in a string containing an integer value -- we'll detect whether
it's hex (0x), binary (0x), octal (0), or decimal and be able to
display it that way later...
'''
self.base = 10
if val.startswith('0x'):
self.base = 16
elif val.startswith('0b'):
self.base = 2
elif val.startswith('0'):
self.base = 8
self.value = int(val, self.base)
def __str__(self):
''' convert our value into a string that's in the same base
representation that we were initialized with.
'''
formats = { 10 : ("", "{0}"),
2: ("0b", "{0:b}"),
8: ("0", "{0:o}"),
16: ("0x", "{0:x}")
}
fmt = formats[self.base]
return fmt[0] + fmt[1].format(self.value)
def __repr__(self):
return str(self)
def __int__(self):
''' get our value as an integer'''
return self.value
x=2+2should report2+2instead of4? – S.Lott Nov 18 '10 at 15:240xff,255and128+127? I don't see how you can tell these apart? What is the rule? – S.Lott Nov 18 '10 at 15:302+0x3What is the "same" representation for this? – S.Lott Nov 18 '10 at 15:46