标签: python python-3.x binary ascii
x = "01100001"
如何将此字符串转换为ASCII
预期结果:
print(x.somefunction()) Output: a
答案 0 :(得分:2)
使用以下一个班轮
x = chr(int('010101010',2))
会奏效。