Python二进制字符串到ASCII文本

时间:2017-01-25 10:27:22

标签: python python-3.x binary ascii

x = "01100001"

如何将此字符串转换为ASCII

预期结果:

print(x.somefunction())
Output: a

1 个答案:

答案 0 :(得分:2)

使用以下一个班轮

x = chr(int('010101010',2))

会奏效。