内容简介:查看字符编码,需要用到chardet模块一、查看网页编码二、查看文件内容编码
查看字符编码,需要用到chardet模块
一、查看网页编码
#coding=utf-8 import urllib.request import chardet url = 'http://www.baidu.com' a = urllib.request.urlopen(url) encode = chardet.detect(a.read()) print(encode['encoding'])
二、查看文件内容编码
#假设存在一个a.txt的文件 f = open('a.txt', 'rb') print(chardet.detect(f.read(100)))
三、查看某个字符串编码
import chardet s = '张三' print(chardet.detect(str.encode(s))) 输出信息:{'encoding': 'utf-8', 'confidence': 0.7525, 'language': ''}
Tips:
chardet.detect 在查看字符串传的编码时,必须要把字符串encode后,才能查看当前字符串编码格式
欢迎大家关注我的公众号:
BigYoung版权所有,转载请邮件(Mr_wang_yang@163.com)获取授权,并注明转自:http://www.bigyoung.cn/1114.html
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- MySQL数据库字符编码总结--数据传输编码
- 编码地狱德国特殊字符
- PostgreSQL 字符编码总结
- Python字符编码详细分析
- Java字符串编码介绍
- PostgreSQL 字符编码相关代码解析
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Essential PHP Security
Chris Shiflett / O'Reilly Media / 2005-10-13 / USD 29.95
Being highly flexible in building dynamic, database-driven web applications makes the PHP programming language one of the most popular web development tools in use today. It also works beautifully wit......一起来看看 《Essential PHP Security》 这本书的介绍吧!