def hexify (i):     return "0x%x" % i   for x in range(0,256):     print "%d - %s" % (x, hexify(x))