python 检测字符串编码类型是什么
Posted 垄上行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 检测字符串编码类型是什么相关的知识,希望对你有一定的参考价值。
for index,value in enumerate(listvalue): adchar=chardet.detect(value) print adchar if adchar[‘encoding‘]==‘utf-8‘ or adchar[‘encoding‘]==‘ascii‘: code=‘utf-8‘ else: code=‘GBK‘ value=value.decode(code)#解码生成unicode编码
以上是关于python 检测字符串编码类型是什么的主要内容,如果未能解决你的问题,请参考以下文章