标签: python-3.x
我试图打包一个字母,例如A 我使用了struct.pack('c','A'),但输出仍然显示
“struct.error:char格式需要长度为1”的字节对象
有人知道它有什么问题吗?
非常感谢!
答案 0 :(得分:1)
'A'是str。您需要b'A',这是bytes。
'A'
str
b'A'
bytes
"Unicode In Python, Completely Demystified"