Python读取文件编码解码问题
Posted 玩蛇的
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python读取文件编码解码问题相关的知识,希望对你有一定的参考价值。
用chardet检测编码
import chardet
raw = open("model.json", ‘rb‘).read()
result = chardet.detect(raw)
# 检测编码
encoding = result[‘encoding‘]
f = open("model.json", "r", encoding=encoding)
lines = f.readlines()
for line in lines:
print(line)
以上是关于Python读取文件编码解码问题的主要内容,如果未能解决你的问题,请参考以下文章
Python中读取二进制图片(例如 a.jpg)有关解码编码的问题