知行编程网知行编程网  2022-12-26 06:30 知行编程网 隐藏边栏  1 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python如何查看编码的相关知识,包括怎么查看python安装路径,以及python字符编码这些编程知识,希望对大家有参考作用。

如何检查python中的编码

python中可以使用chardet模块检测字符串/文件编码。

1、chardet下载与安装

下载地址:http://pypi.python.org/pypi/chardet

下载chardet后,解压chardet压缩包,将chardet文件夹直接放在应用目录下,可以使用import chardet开始使用chardet,也可以将chardet复制到Python系统目录下,这样你所有的python程序只需要使用 import chardet 就可以了。

python setup.py install

在使用中,chardet.detect()返回一个字典,其中confidence为检测准确率,encoding为编码形式。

示例:

网页编码判断:

>>> import urllib
>>> rawdata = urllib.urlopen('http://www.google.cn/').read()
>>> import chardet
>>> chardet.detect(rawdata)
{'confidence': 0.98999999999999999, 'encoding': 'GB2312'}

文件编码判断

import chardet
tt=open('c:\\111.txt','rb')
ff=tt.readline()
#这里试着换成read(5)也可以,但是换成readlines()后报错
enc=chardet.detect(ff)
print enc['encoding']
tt.close()

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享