python2.7读汉字的时候出现乱码,如何解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python2.7读汉字的时候出现乱码,如何解决相关的知识,希望对你有一定的参考价值。

我使用的是window系统,安装Anaconda,所以用的是技术分享

1.数据形式

技术分享

2.读进来乱码

技术分享

3.解决办法

3.1方法1

import pandas as pd

#pd.read_csv(‘c:/users/thinkpad/desktop/1.csv‘)

pd.read_csv(‘c:/users/thinkpad/desktop/1.csv‘,encoding=‘gb2312‘)

技术分享

3.2方法2

import pandas as pd

import codecs 

  def ReadFile(filePath,encoding): 

    with codecs.open(filePath,"r",encoding) as f: 

        return f.read() 

def WriteFile(filePath,u,encoding): 

    with codecs.open(filePath,"w",encoding) as f: 

        f.write(u) 

def GBK_2_UTF8(src,dst): 

    content = ReadFile(src,encoding=‘gbk‘) 

    WriteFile(dst,content,encoding=‘utf_8‘) 

src = ‘C:/Users/Thinkpad/Desktop/1.csv‘ 

dst = ‘C:/Users/Thinkpad/Desktop/1_utf8.csv‘ 

GBK_2_UTF8(src,dst) 

path = ‘C:/Users/Thinkpad/Desktop/1_utf8.csv‘ 

data = pd.read_csv(path,)   

技术分享

 

以上是关于python2.7读汉字的时候出现乱码,如何解决的主要内容,如果未能解决你的问题,请参考以下文章

sqlite乱码

C语言运行的时候汉字全部乱码怎么回事?

C语言运行的时候汉字全部乱码怎么回事?

python打印输出汉字,有一部分出现乱码怎么解决?

java 向数据库写入汉字的时候出现乱码

python2.7下使用logging模块记录日志到终端显示乱码问题解决