📅  最后修改于: 2023-12-03 15:04:38.624000             🧑  作者: Mango
在Python中,decode()
是字符串对象的方法之一。它用于将已编码的字符串解码为指定的字符集。
在编码过程中,将原始字符串转换为字节序列。而解码过程则是将字节序列重新转换回字符串。
# 示例
byte_string = b'\xe4\xbd\xa0\xe5\xa5\xbd'
decoded_string = byte_string.decode('utf-8')
print(decoded_string) # 输出:你好
str.decode(encoding, errors='strict')
该方法接受两个参数:
encoding
:解码使用的字符集,如 'utf-8'
、'ascii'
等。errors
(可选):指定解码错误处理的方式,默认为 'strict'
。其他常用选项包括 'ignore'
(忽略错误)、'replace'
(用替代字符代替错误字符)等。解码指定字符集的编码字符串:
byte_string = b'\xe4\xbd\xa0\xe5\xa5\xbd'
decoded_string = byte_string.decode('utf-8')
print(decoded_string) # 输出:你好
在上述示例中,使用 'utf-8'
字符集将字节串解码为字符串。
处理解码错误:
byte_string = b'\xe4\xbd\xa0\xe5\xa5\xbd\xff'
decoded_string = byte_string.decode('utf-8', errors='replace')
print(decoded_string) # 输出:你好�
字节串 b'\xe4\xbd\xa0\xe5\xa5\xbd\xff'
包含一个非法的字符码点 0xff
,当使用 'utf-8'
解码时会引发一个解码错误。在这个示例中,我们使用 'replace'
错误处理选项,将无法解码的字符替换为 '�'
。
bytes
)对象,而不能直接应用于字符串(str
)对象。如果你想对字符串解码,请先将其转换为字节串。以上就是关于Python字符串 decode()
方法的介绍。希望能帮助到你理解和使用该方法。