1. 程式人生 > >Python模塊-chardet模塊

Python模塊-chardet模塊

左右 中文 alt inf imp test odi com auth

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