How to convert an integer to a hexadecimal string in Python?



We can use built in hex() function to convert any integer to its hexadecimal representation.

>>> hex(100)
'0x64'
>>> hex(4095)
'0xfff'
>>> hex(31)
'0x1f'



Advertisements