python读取文件编码格式
Posted 为了生活而学习
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取文件编码格式相关的知识,希望对你有一定的参考价值。
下载库
pip install chardet
执行
import chardet
f = open(‘a.doc‘,r)
data = f.read()
print chardet.detect(data)
结果
{‘confidence‘: 0.64465744, ‘encoding‘: ‘utf-8‘}
前面是相似度 后面是编码格式
以上是关于python读取文件编码格式的主要内容,如果未能解决你的问题,请参考以下文章