标签:
下载库
pip install chardet
执行
import chardet
f = open(‘a.doc‘,r)
data = f.read()
print chardet.detect(data)
结果
{‘confidence‘: 0.64465744, ‘encoding‘: ‘utf-8‘}
前面是相似度 后面是编码格式
python读取文件编码格式
原文地址:http://www.cnblogs.com/lizhengtan/p/5538231.html