如何将字节文本转换成 Python 字符串?
要将字节文本转换成 Python 字符串,您需要对字节进行解码。这可以通过对 Bytes 对象执行 decode 方法来完成。
示例
>>> b"abcde".decode("utf-8") u'abcde'
如果 Bytes 表示如下 ASCII 编码,您还可以将 Bytes 映射到 chr −
bytes = [112, 52, 52] print("".join(map(chr, bytes)))
输出
p44
广告
要将字节文本转换成 Python 字符串,您需要对字节进行解码。这可以通过对 Bytes 对象执行 decode 方法来完成。
>>> b"abcde".decode("utf-8") u'abcde'
如果 Bytes 表示如下 ASCII 编码,您还可以将 Bytes 映射到 chr −
bytes = [112, 52, 52] print("".join(map(chr, bytes)))
p44