Convert hex string to int in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:29:43Z http://stackoverflow.com/feeds/question/209513 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/209513/convert-hex-string-to-int-in-python 14 Convert hex string to int in Python Matt 2008-10-16T17:28:03Z 2008-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#209529 8 Answer by unwind for Convert hex string to int in Python unwind 2008-10-16T17:32:10Z 2008-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#209530 4 Answer by smink for Convert hex string to int in Python smink 2008-10-16T17:32:32Z 2008-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#209550 19 Answer by Dan for Convert hex string to int in Python Dan 2008-10-16T17:37:52Z 2008-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>&gt;&gt;&gt; print int("0xdeadbeef", 0) 3735928559 &gt;&gt;&gt; print int("10", 0) 10 </code></pre>