python3过大数据如何读取?

图片[1]-python3过大数据如何读取?-uusu优素-乐高,模型,3d打印,编程

python中读取大文件的方法:

1、利用yield生成器读取

defreadPart(filePath,size=1024,encoding="utf-8"):
withopen(filePath,"r",encoding=encoding)asf:
whileTrue:
part=f.read(size)
ifpart:
yieldpart
else:
returnNone
filePath=r"filePath"
size=2048#每次读取指定大小的内容到内存
encoding='utf-8'
forpartinreadPart(filePath,size,encoding):
print(part)
#Processingdata

2、利用open()自带方法生成迭代对象,这个是一行一行的读取

withopen(filePath)asf:
forlineinf:
print(line)
#Processingdata
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容