vote up 1 vote down star
2

I have ABC123EFFF, I want to have 01010101010001010101.

How?

flag

8 Answers

vote up 5 vote down
bin(int("abc123efff", 16))[2:]
link|flag
Note that this only works on Python 2.6 and 3.0 – Matt Good Sep 15 at 7:05
1  
Oh, this also omits any leading '0's so it may need padded for this use. – Matt Good Sep 15 at 7:08
1  
If the input is "1a" this gives "11010", not "00011010" which may or may not be what you want. – Matt Good Sep 15 at 7:16
2  
There are an infinite number of leading zeroes on every number, so I'd hope it omits them. – Glenn Maynard Sep 15 at 7:18
1  
It's unfortunate that it's a global builtin. It should have been int.bin (int.oct, int.hex), instead of eating away at the global namespace. – Glenn Maynard Sep 15 at 8:16
show 3 more comments
vote up 2 vote down
import binascii

binary_string = binascii.unhexlify(hex_string)

Read

binascii.unhexlify

Return the binary data represented by the hexadecimal string specified as the parameter.

link|flag
This returns "binary" as in the actual bytes, but it does not convert it to a printable representation as "0" and "1". – Matt Good Sep 15 at 6:52
docs.python.org/library/binascii.html is subtitled Convert between binary and ASCII. Doesn't that mean it returns a string? – pavium Sep 15 at 6:58
Yes, it returns a string containing the bytes represented, e.g. >>> unhexlify("ab") "\xab" – Matt Good Sep 15 at 7:03
vote up 1 vote down

Another way:

import math

def hextobinary(hex_string):
    s = int(hex_string, 16) 
    num_digits = int(math.ceil(math.log(s) / math.log(2)))
    digit_lst = ['0'] * num_digits
    idx = num_digits
    while s > 0:
    	idx -= 1
    	if s % 2 == 1: digit_lst[idx] = '1'
    	s = s / 2
    return ''.join(digit_lst)

print hextobinary('abc123efff')
link|flag
This fails if hex_string is set to 'f0' – nailer Dec 21 at 13:34
vote up 1 vote down

hex --> decimal then decimal --> binary

#decimal to binary 
def d2b(n):
    bStr = ''
    if n < 0: raise ValueError, "must be a positive integer"
    if n == 0: return '0'
    while n > 0:
        bStr = str(n % 2) + bStr
        n = n >> 1    
    return bStr

#hex to binary
def h2b(hex):
    return d2b(int(hex,16))
link|flag
A good solution for those stuck on Python 2.4 – nailer Dec 21 at 13:36
vote up 1 vote down

Replace each hex digit with the corresponding 4 binary digits:

1 - 0001
2 - 0010
...
a - 1010
b - 1011
...
f - 1111
link|flag
1  
Or replace each pair of hex digits with the corresponding 8 binary digits, or replace each triplet of hex digits with the corresponding 12 binary digits ... or replace each 10 hex digits, with the corresponding 40 binary digits - Oops! back where we started! – pavium Sep 15 at 6:52
vote up 0 vote down

unhexlify

link|flag
vote up 0 vote down

Here's a fairly raw way to do it using bit fiddling to generate the binary strings.

The key bit to understand is:

(n & (1 << i)) and 1

Which will generate either a 0 or 1 if the i'th bit of n is set.


import binascii

def byte_to_binary(n):
    return ''.join(str((n & (1 << i)) and 1) for i in reversed(range(8)))

def hex_to_binary(h):
    return ''.join(byte_to_binary(ord(b)) for b in binascii.unhexlify(h))

print hex_to_binary('abc123efff')

>>> 1010101111000001001000111110111111111111
link|flag
vote up 0 vote down
bin(0xabc123eff)[2:]
link|flag

Your Answer

Get an OpenID
or
never shown

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