python检测字符串乱码
Posted hankleo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python检测字符串乱码相关的知识,希望对你有一定的参考价值。
import chardet
f=open('test.txt','rb')
f_read=f.read()
f_charInfo=chardet.detect(f_read)
print(f_charInfo)
# f_charInfo的输出是这样的的一个字典{'confidence': 0.99, 'encoding': 'utf-8'}
以上是关于python检测字符串乱码的主要内容,如果未能解决你的问题,请参考以下文章