vote up 14 vote down star
4

How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".

flag

3 Answers

vote up 19 vote down check

Without the 0x prefix, you need to specify the base explicitly, otherwise there's no way to tell:

x = int("deadbeef", 16)

With the 0x prefix, Python can distinguish hex and decimal automatically:

>>> print int("0xdeadbeef", 0)
3735928559
>>> print int("10", 0)
10
link|flag
vote up 8 vote down

int(hexString, 16) does the trick, and works with and without the 0x prefix.

link|flag
vote up 4 vote down

For any given string s:

int(s, 16)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.