hex to int

Bjorn Pettersen BPettersen at NAREX.com
Tue Feb 12 17:27:07 EST 2002


> From: maximilianscherr [mailto:MaximilianScherr at T-Online.de] 
> 
> how can i convert hex to int?
> 

I'm assuming you're asking how to convert a string representation of a
hexadecimal to an integer...

>>> int('0xff', 16)
255

-- bjorn




More information about the Python-list mailing list