如何将位数组数据转换为 Python 中的字符串

How to convert bitarray data to string in Python

我在位数组中有二进制代码。我想将位数组的内容显示为字符串。我如何修复代码以显示内容。

from bitarray import bitarray
data = bitarray('010101')
print(str(data))

我的输出:

bitarray('010101')

我需要:

010101

您可以使用

print(data.to01())

除了方法 .to01 之外,您还可以使用 decodetree 这将允许您指定要使用的内容而不是 0 和 1:

>> from bitarray import bitarray, decodetree
>> t = decodetree({'0': bitarray('0'), '1': bitarray('1')})
>> data = bitarray('010101')
>>> ''.join(data.decode(t))
010101

有关 .to01decode 和其他 methods/functions 的更多信息,请参阅 bitarray here.

的文档