您现在的位置是:课程教程文章

python读取文本内容中文乱码怎么解决

2023-12-18 18:52课程教程文章 人已围观

python读取文本内容乱码的解决方法:

1、查看文件编码方式:

import chardet
fobj=open(fname,'r')
data=fobj.read()
print chardet.detect(data)['encoding']

2、编码类型转换

python默认使用unicode字符集,默认编码方式utf-8.

str.decode('gbk')    #将gbk编码的字符串转换成unicode编码
str.encode('gbk')    #将unicode编码的字符串转换成gbk编码

更多Python知识请关注Python视频教程栏目。

课程教程:python读取文本内容中文乱码怎么解决

上一篇:python中等号是什么意思?

下一篇:没有了

站点信息

  • 文章统计篇文章