我先把1.txt的内容贴出来:

马纤羽     深圳    173   13711111111
乔亦菲     广州    173   15811111111
罗梦竹     北京    173   18511111111
刘诺涵     北京    175   18511111111
岳妮妮     深圳    173   18811111111
贺婉萱     深圳    173   18511111111
叶梓萱     上海    173   18011111111

安装方式 :pip3 install chardet

 1 # @Time :2019/6/9 13:34
 2 #-*- encoding:utf-8 -*-
 3 
 4 import chardet
 5 
 6 with open('1.txt',mode='rb') as f:
 7 data = f.read()
 8 # print(data)
 9 
10 print(chardet.detect(data))
11 #输出为 {'encoding': 'utf-8', 'confidence': 0.99, 'language': ''}
12 
13  print(data.decode('UTF-8'))

解释:

#{'encoding': 'utf-8', 'confidence': 0.99, 'language': ''}
'encoding': 'utf-8',这是检测出来可能的编码格式,
'confidence': 0.99,相似度0.99
posted on 2019-07-09 05:51  嗯哈哈  阅读(164)  评论(0编辑  收藏  举报