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'


Updated on: 25-Feb-2020

436 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements