乱码的解决方法

Posted moshuixiong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了乱码的解决方法相关的知识,希望对你有一定的参考价值。

一.确定字符串类型

import chardet
str=中文~
print str(chardet.detect(str))

二.根据类型转码

str=str.decode(GB2312).encode(utf-8)
#先将字符串由得到的类型转为undecode,再转为其他字符类型

三.代码前添加

# -*- coding: utf-8 -*-
reload(sys)
sys.setdefaultencoding(utf-8)

 

以上是关于乱码的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

excel文件出现乱码的原因及解决方法

Win7使用Xshell出现乱码解决方法

word打开是乱码的解决方法

csv打开乱码的解决方法

JIRA 详情页面链接Confluence显示为乱码解决方法

pycharm 文件名乱码解决方法