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

I have a binary representation string,like

01010101

How can I convert it to real binary and write it to a binary file?

share|improve this question

1 Answer

up vote 7 down vote accepted

Use the int function with a base of 2 to read a binary value as an integer.

n = int("01010101", 2)

Python 2 uses strings to handle binary data, so you would use the chr() function to convert the integer to a one-byte string.

data = chr(n)

Python 3 handles binary and text differently, so you need to use the bytes type instead. This doesn't have a direct equivalent to the chr() function; instead we put n in a one element array and convert that to a bytes object.

data = bytes([n])

Once you have your binary string, you can open a file in binary mode and write the data to it like this:

open("out.bin", "wb") as f:
    f.write(data)
share|improve this answer
Quite clear and comprehensive. Thanks – xiaohan2012 Aug 27 '11 at 13:57

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.