共计 522 个字符,预计需要花费 2 分钟才能阅读完成。
能够通过两种办法利用 python 读取大文件:第一种是利用 yield 生成器读取;第二种是:利用 open() 自带办法生成迭代对象,这个是一行一行的读取。
1、利用 yield 生成器读取
def readPart(filePath, size=1024, encoding="utf-8"):
with open(filePath,"r",encoding=encoding) as f:
while True:
part = f.read(size)
if part:
yield part
else:
return None
filePath = r"filePath"
size = 2048 # 每次读取指定大小的内容到内存
encoding = 'utf-8'
for part in readPart(filePath,size,encoding):
print(part)
# Processing data
2、利用 open() 自带办法生成迭代对象,这个是一行一行的读取
with open(filePath) as f:
for line in f:
print(line)
# Processing data
python 读取文件相干操作文档欢送查看:
python 如何读取文件的数据
更多 Python 常识能够关注 segmentfault 自学网
正文完