Convert hex string to int in Python - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T09:29:43Zhttp://stackoverflow.com/feeds/question/209513http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/209513/convert-hex-string-to-int-in-python14Convert hex string to int in PythonMatt2008-10-16T17:28:03Z2008-10-16T17:37:52Z
<p>How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".</p>
http://stackoverflow.com/questions/209513/convert-hex-string-to-int-in-python/209529#2095298Answer by unwind for Convert hex string to int in Pythonunwind2008-10-16T17:32:10Z2008-10-16T17:32:10Z<p><code>int(hexString, 16)</code> does the trick, and works with and without the 0x prefix.</p>
http://stackoverflow.com/questions/209513/convert-hex-string-to-int-in-python/209530#2095304Answer by smink for Convert hex string to int in Pythonsmink2008-10-16T17:32:32Z2008-10-16T17:32:32Z<p>For any given string s:</p>
<pre><code>int(s, 16)
</code></pre>
http://stackoverflow.com/questions/209513/convert-hex-string-to-int-in-python/209550#20955019Answer by Dan for Convert hex string to int in PythonDan2008-10-16T17:37:52Z2008-10-16T17:37:52Z<p><strong>Without</strong> the 0x prefix, you need to specify the base explicitly, otherwise there's no way to tell:</p>
<pre><code>x = int("deadbeef", 16)
</code></pre>
<p><strong>With</strong> the 0x prefix, Python can distinguish hex and decimal automatically:</p>
<pre><code>>>> print int("0xdeadbeef", 0)
3735928559
>>> print int("10", 0)
10
</code></pre>