python如何判断字符串编码方式

python判断字符串编码方式的方法:1、打开命令提示符,进入Python27Script目录;2、执行命令安装chardet;3、判断字符串编码方式即可,如:【chardet.detect(f.read())】。

具体方法:

(推荐教程:Python入门教程)

1、安装chardet

在命令行中,进入Python27Scripts目录,执行以下命令

easy_install chardet

2、判断方法

import chardet
f = open('file','r')
fencoding=chardet.detect(f.read())
print fencoding

fencoding输出格式 {'confidence': 0.96630842899499614, 'encoding': 'GB2312'} ,只能判断是否为某种编码的概率。比较准确的结果了。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何判断字符串编码方式