Python3 读取文件内容万金油方法
Posted 追风弧箭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 读取文件内容万金油方法相关的知识,希望对你有一定的参考价值。
bytes = min(32, os.path.getsize(filename))
raw = open(filename, 'rb').read(bytes)
result = chardet.detect(raw)
encoding = result['encoding']
infile = open(filename, "r", encoding=encoding)
all_the_text = infile.read()
infile.close()
print(data)
以上是关于Python3 读取文件内容万金油方法的主要内容,如果未能解决你的问题,请参考以下文章