Python:1s和0s的字符串 - >二进制文件

时间:2011-10-11 21:05:45

标签: python binary

我在Python中有一个1和0的字符串,我想把它写成二进制文件。找到一个好方法,我遇到了很多麻烦。

有没有一种标准的方法可以做到这一点,我只是错过了?

5 个答案:

答案 0 :(得分:8)

如果你想要一个二进制文件,

>>> import struct
>>> myFile=open('binaryFoo','wb')
>>> myStr='10010101110010101'
>>> x=int(myStr,2)
>>> x
76693
>>> struct.pack('i',x)
'\x95+\x01\x00'
>>> myFile.write(struct.pack('i',x))
>>> myFile.close()
>>> quit()
$ cat binaryFoo
�+$

这是你在找什么?

答案 1 :(得分:2)

In [1]: int('10011001',2)
Out[1]: 153

将您的输入拆分为八位,然后应用int(_, 2)chr,然后连接成一个字符串并将此字符串写入文件。

像......这样的东西:

your_file.write(''.join(chr(int(your_input[8*k:8*k+8], 2)) for k in xrange(len(your_input)/8)))

答案 2 :(得分:0)

BITS_IN_BYTE = 8
chars = '00111110'
bytes = bytearray(int(chars[i:i+BITS_IN_BYTE], 2)
    for i in xrange(0, len(chars), BITS_IN_BYTE))
open('filename', 'wb').write(bytes)

答案 3 :(得分:0)

或者您可以像这样使用array模块

$ python
Python 2.7.2+ (default, Oct  4 2011, 20:06:09) 
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import random,array
#This is the best way, I could think of for coming up with an binary string of 100000 
>>> binStr=''.join([str(random.randrange(0,2)) for i in range(100000)]) 
>>> len(binStr)
100000
>>> a = array.array("c", binStr)
#c is the type of data (character)
>>> with open("binaryFoo", "ab") as f:
...     a.tofile(f)
... 
#raw writing to file
>>> quit()
$ 

答案 4 :(得分:0)

现在有一个位串模块可以满足你的需要。

from bitstring import BitArray

my_str = '001001111'
binary_file = open('file.bin', 'wb')
b = BitArray(bin=my_str)
b.tofile(binary_file)
binary_file.close()

您可以使用xxd -b file.bin

从Linux中的shell进行测试