python查看文件的编码方式
程序员文章站
2023-12-09 23:47:21
python查看文件的编码方式
最近在实验楼上做练习,遇到了中文乱码的问题。因为在notepad上能够正确显示文件内容,但是使用sublime3打开时,则为中文乱码。
这种乱码问题大都是因为编码和解...
python查看文件的编码方式
最近在实验楼上做练习,遇到了中文乱码的问题。因为在notepad上能够正确显示文件内容,但是使用sublime3打开时,则为中文乱码。
这种乱码问题大都是因为编码和解码的不匹配造成的。通过notepad可以将其他编码下转为utf-8的编码方式。
另外有时想确定某一文件的编码方式,可以通过以下方法确认。
import chardet def get_encoding(file): with open(file,'rb') as f: return chardet.detect(f.read())['encoding'] file_name="c:\\users\\administrator\\desktop\\stations.py" #此处替换为你自己的文件路径 encoding = get_encoding(file_name) print(encoding)