How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".
|
|
Without the 0x prefix, you need to specify the base explicitly, otherwise there's no way to tell:
With the 0x prefix, Python can distinguish hex and decimal automatically:
|
||
|
|
|
|
For any given string s:
|
||
|
|
|
|
|
||
|
|
