Python模块-chardet模块
Posted Sch01aR#
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python模块-chardet模块相关的知识,希望对你有一定的参考价值。
chardet模块用来获取文件的编码
# -*- coding:utf-8 -*- __author__ = "MuT6 Sch01aR" import chardet f = open(\'test.txt\',\'rb\') data = f.read() f.close() result = chardet.detect(data) print(result)
运行结果
以字典形式返回结果
编码为GB2312,对结果正确的把握为78%左右,语言为中文
以上是关于Python模块-chardet模块的主要内容,如果未能解决你的问题,请参考以下文章
python3.6使用chardet模块总是报错ValueError: Expected a bytes object, not a unicode object