使用chardet查看文件文本内容的编码方式
代码:
import chardet
currentFile = open('dev_msra.bmes',mode='rb')
content = currentFile.read()
print(chardet.detect(content))
注意:open需要指定打开模式为’b’二进制打开,并且需要’rb’或’wb’或其他组合方式,仅使用’b’模式不够
使用chardet查看文件文本内容的编码方式
import chardet
currentFile = open('dev_msra.bmes',mode='rb')
content = currentFile.read()
print(chardet.detect(content))
注意:open需要指定打开模式为’b’二进制打开,并且需要’rb’或’wb’或其他组合方式,仅使用’b’模式不够