We can use built in hex() function to convert any integer to its hexadecimal representation.
>>> hex(100) '0x64' >>> hex(4095) '0xfff' >>> hex(31) '0x1f'
We can use built in hex() function to convert any integer to its hexadecimal representation.
>>> hex(100) '0x64' >>> hex(4095) '0xfff' >>> hex(31) '0x1f'