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%左右,语言为中文
原文地址:https://www.cnblogs.com/sch01ar/p/8447558.html
时间: 2024-10-03 11:09:33