Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I perform a conversion of a binary string to the corresponding hex value in Python?

I have 0000 0100 1000 1101 and I want to get 048D I'm using Python 2.6.

share|improve this question

5 Answers

Welcome to StackOverflow!

int given base 2 and then hex:

>>> int('010110', 2)
22
>>> hex(int('010110', 2))
'0x16'
>>> 

>>> hex(int('0000010010001101', 2))
'0x48d'

The doc of int:

int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating

point argument will be truncated towards zero (this does not include a string representation of a floating point number!) When converting a string, use the optional base. It is an error to supply a base when converting a non-string. If base is zero, the proper base is guessed based on the string content. If the argument is outside the integer range a long object will be returned instead.

The doc of hex:

hex(number) -> string

Return the hexadecimal representation of an integer or long

integer.

share|improve this answer
2  
This fails to preserve leading 0s. – Ignacio Vazquez-Abrams Jan 15 '10 at 14:58
@Ignacio, you're right, but I don't think the OP asked about that. In any case, ++ to your answer for pointing that out. – Eli Bendersky Jan 15 '10 at 16:14
@Eli: the OP specifically said he wanted 048d i.e. wants leading zero, DOESN'T want 0x – John Machin Jan 15 '10 at 20:44

Converting Binary into hex without ignoring leading zeros:

You could use the format() built-in function like this:

"{0:0>4X}".format(int("0000010010001101", 2))
share|improve this answer
bstr = '0000 0100 1000 1101'.replace(' ', '')
hstr = '%0*X' % ((len(bstr) + 3) // 4, int(bstr, 2))
share|improve this answer
3  
@SO should really add per-language coloring. Here it thinks // is a C++ comment and grays out everything following. // in Python isn't a comment, but truncating integer division – Eli Bendersky Jan 15 '10 at 16:16

Assuming they are grouped by 4 and separated by whitespace. This preserves the leading 0.

b = '0000 0100 1000 1101'
h = ''.join(hex(int(a, 2))[2:] for a in b.split())
share|improve this answer
you don't need list comprehension there – SilentGhost Jan 15 '10 at 15:00
good point. dunno why I always do that. – Tor Valamo Jan 15 '10 at 15:13
>>> import string
>>> s="0000 0100 1000 1101"
>>> ''.join([ "%x"%string.atoi(bin,2) for bin in s.split() ]  )
'048d'
>>>

or

>>> s="0000 0100 1000 1101"
>>> hex(string.atoi(s.replace(" ",""),2))
'0x48d'
share|improve this answer
2  
Using the string module is so 1990s ... – John Machin Jan 15 '10 at 20:41
so what's the problem? Its still in Python 2.6 – ghostdog74 Jan 15 '10 at 23:51
1  
It's still in 2.X for the benefit of people who were using it in 1.X. string.atoi() is according to the 2.6 docs """Deprecated since version 2.0: Use the int() built-in function.""" and is not present in 3.X. The 2.X implementation of string.atoi() calls int(). There is no good reason for telling some newcomer that string.atoi() even exists let alone telling them to use it instead of telling them to use int(). – John Machin Jan 16 '10 at 9:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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