Python----chardet模块的使用方法(python中chardet)

网友投稿 284 2022-09-04


Python----chardet模块的使用方法(python中chardet)

1、安装

安装命令

pip install chardet

2、使用

2.1、检测是否为ascii编码

import chardetv1=b"hello world"print(chardet.detect(v1))

执行结果为:

{'encoding': 'ascii', 'confidence': 1.0, 'language': ''}

2.2、检测是否为gbk编码

import chardetv1="呵呵".encode("gbk")print(chardet.detect(v1))

执行结果为:

{'encoding': 'ISO-8859-1', 'confidence': 0.73, 'language': ''}

2.3、检测是否为utf8编码

import chardetv1="Python学习".encode("utf8")print(chardet.detect(v1))

执行结果为:

{'encoding': 'utf-8', 'confidence': 0.7525, 'language': ''}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:【ELM预测】基于探路者算法优化极限学习机预测附matlab代码
下一篇:idea快速生成代码配置的方法示例
相关文章

 发表评论

暂时没有评论,来抢沙发吧~