目标:将二进制转换为字符串
示例:0111010001100101011100110111010001100011011011110110010001100101 - > testCode(没有空格)
我使用字典和我的功能,我搜索更好的方式,更有效率
from textwrap import wrap
DICO = {'\x00': '00', '\x04': '0100', '\x08': '01000', '\x0c': '01100',
'\x10': '010000', '\x14': '010100', '\x18': '011000', '\x1c': '011100',
' ': '0100000', '$': '0100100', '(': '0101000', ',': '0101100', '0': '0110000',
'4': '0110100', '8': '0111000', '<': '0111100', '@': '01000000',
'D': '01000100', 'H': '01001000', 'L': '01001100', 'P': '01010000',
'T': '01010100', 'X': '01011000', '\\': '01011100', '`': '01100000',
'd': '01100100', 'h': '01101000', 'l': '01101100', 'p': '01110000',
't': '01110100', 'x': '01111000', '|': '01111100', '\x03': '011',
'\x07': '0111', '\x0b': '01011', '\x0f': '01111', '\x13': '010011',
'\x17': '010111', '\x1b': '011011', '\x1f': '011111', '#': '0100011',
"'": '0100111', '+': '0101011', '/': '0101111', '3': '0110011', '7': '0110111',
';': '0111011', '?': '0111111', 'C': '01000011', 'G': '01000111',
'K': '01001011', 'O': '01001111', 'S': '01010011', 'W': '01010111',
'[': '01011011', '_': '01011111', 'c': '01100011', 'g': '01100111',
'k': '01101011', 'o': '01101111', 's': '01110011', 'w': '01110111',
'{': '01111011', '\x7f': '01111111', '\x02': '010', '\x06': '0110',
'\n': '01010', '\x0e': '01110', '\x12': '010010', '\x16': '010110',
'\x1a': '011010', '\x1e': '011110', '"': '0100010', '&': '0100110',
'*': '0101010', '.': '0101110', '2': '0110010', '6': '0110110', ':': '0111010',
'>': '0111110', 'B': '01000010', 'F': '01000110', 'J': '01001010',
'N': '01001110', 'R': '01010010', 'V': '01010110', 'Z': '01011010',
'^': '01011110', 'b': '01100010', 'f': '01100110', 'j': '01101010',
'n': '01101110', 'r': '01110010', 'v': '01110110', 'z': '01111010',
'~': '01111110', '\x01': '01', '\x05': '0101', '\t': '01001', '\r': '01101',
'\x11': '010001', '\x15': '010101', '\x19': '011001', '\x1d': '011101',
'!': '0100001', '%': '0100101', ')': '0101001', '-': '0101101',
'1': '0110001', '5': '0110101', '9': '0111001', '=': '0111101',
'A': '01000001', 'E': '01000101', 'I': '01001001', 'M': '01001101',
'Q': '01010001', 'U': '01010101', 'Y': '01011001', ']': '01011101',
'a': '01100001', 'e': '01100101', 'i': '01101001', 'm': '01101101',
'q': '01110001', 'u': '01110101', 'y': '01111001', '}': '01111101'}
def decrypt(binary):
"""Function to convert binary into string"""
binary = wrap(binary, 8)
ch = ''
for b in binary:
for i, j in DICO.items():
if j == b:
ch += i
return ch
感谢提前,
答案 0 :(得分:14)
''.join([ chr(int(p, 2)) for p in wrap(binstr, 8) ])
这是做什么的:wrap
首先将你的字符串拆分为8个块。然后,我遍历每个字符串,并将其转换为整数(基数为2)。现在,每个转换后的整数都被覆盖为chr
的字符。最后,我用''.join
将它全部包起来将它们粉碎在一起。
chr(int(p, 2))
的每一步细分:
>>> int('01101010', 2)
106
>>> chr(106)
'j'
使其适合您的模式:
def decrypt(binary):
"""Function to convert binary into string"""
binary = wrap(binary, 8)
ch = ''
for b in binary:
ch += chr(int(b, 2))
return ch
或
def decrypt(binary):
"""Function to convert binary into string"""
return ''.join([ chr(int(p, 2)) for p in wrap(binary, 8) ])
这肯定更快,因为它只是在进行数学运算,而不是一遍又一遍地遍历字典。此外,它更具可读性。
答案 1 :(得分:3)
如果执行速度对你来说最重要,为什么不在你的dict中反转键和值的角色?! (如果您还需要当前的dict,则可以创建一个倒置版本,如{v:k for k, v in DICO.items()}
)
现在,您可以通过键直接找到搜索到的翻译,而不是遍历整个字典。
您的新功能如下所示:
def decrypt2(binary):
"""Function to convert binary into string"""
binary = wrap(binary, 8)
ch = ''
for b in binary:
if b in DICO_INVERTED:
ch += DICO_INVERTED[b]
return ch
根据二进制字符串的大小,您可以通过更改构造输出字符串的方式来获得一些时间(请参阅Efficient String Concatenation in Python或performance tips - string concatenation)。使用join
似乎很有希望。我试试看:''.join(DICO_INVERTED.get(b, '') for b in binary)
答案 2 :(得分:2)
def decrypt(binary):
"""Function to convert binary into string"""
return ''.join(( chr(int(p, 2)) for p in grouper(8,binary,'') ))
从这里取出石斑鱼http://docs.python.org/library/itertools.html#recipes
或
def decrypt2(binary):
"""Function to convert binary into string"""
return ''.join(( DICO_INVERTED[p] for p in grouper(8,binary,'') ))
避免创建临时列表
修改强> 因为我被选为“正确”的答案我必须承认我使用了其他答案。关键在于不使用生成器列表,而是使用生成器表达式和迭代器