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

python检测字符串乱码

时间:2019-04-29 18:51:32      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:enc   har   txt   pre   pen   python   pytho   字符   read   

import chardet
f=open('test.txt','rb')
f_read=f.read()
f_charInfo=chardet.detect(f_read)
print(f_charInfo)

# f_charInfo的输出是这样的的一个字典{'confidence': 0.99, 'encoding': 'utf-8'}

python检测字符串乱码

标签:enc   har   txt   pre   pen   python   pytho   字符   read   

原文地址:https://www.cnblogs.com/hankleo/p/10791993.html

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