检测文件的格式——chardet模块
Posted leoych
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测文件的格式——chardet模块相关的知识,希望对你有一定的参考价值。
f3 = open(file=path,mode=‘rb‘) data = f3.read() # print(data) f3.close() result = chardet.detect(data) print(result)
结果:
{‘encoding‘: ‘Big5‘, ‘confidence‘: 0.99, ‘language‘: ‘Chinese‘}
以上是关于检测文件的格式——chardet模块的主要内容,如果未能解决你的问题,请参考以下文章
使用chardet模块获取文件的编码格式,进而正确的读取文件内容