import codecs with codecs.open(‘h.csv‘, ‘rb‘, ‘gb2312‘) as csvfile: for line in csvfile: print line
python 读取 csv 中文 乱码 解决办法
原文:https://www.cnblogs.com/zhangbao003/p/9360118.html