python如何查看编码类型

python查看编码类型的方法:1、输入“import chardet”命令导入模块;2、输入“chardit=chardet.detect(c)”命令查看编码(c为要查看的编码),输出后的结果即为要查看的编码类型。

查看编码类型

import chardet
chardit1 = chardet.detect(cf_r)  #cf_r为要查看的编码
print (cf_r['encoding'])

推荐课程:Python 基础入门教程

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

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何查看编码类型