码迷,mamicode.com
首页 > 编程语言 > 详细

Python模块-chardet模块

时间:2018-02-13 22:52:13      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:author   res   语言   pen   inf   png   txt   gpo   bubuko   

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模块

标签:author   res   语言   pen   inf   png   txt   gpo   bubuko   

原文地址:https://www.cnblogs.com/sch01ar/p/8447558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!