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: 2020-02-25T11:21:28+05:30

961 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements