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 读取文件内容万金油方法的主要内容,如果未能解决你的问题,请参考以下文章

python3 文件操作with open()方法用法解析

深入学习python解析并读取PDF文件内容的方法

python3读取ini配置文件

python3读取ini配置文件(含中文)

python逐行读取文件内容的三种方法

python3 简单实现从csv文件中读取内容,并对内容进行分类统计