python如何检测字符编码

如果你不知道字节字符串的编码,你可以尝试使用chardet库自动检测编码。以下是使用chardet检测编码的示例:

import chardet

# 检测字节字符串的编码
result = chardet.detect(response.content)
encoding = result['encoding']

# 使用检测到的编码解码字节字符串
content = response.content.decode(encoding)

发表评论

后才能评论