The hex() function in python, puts the leading characters 0x in front of the number. Is there anyway to tell it NOT to put them? So 0xfa230>
hex()
0x
0xfa230>
>>> format(3735928559, 'x') 'deadbeef'