【说站】python如何读取大文件
2024-11-14
27
python如何读取大文件
可以通过两种方法利用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知识可以关注Python自学网
(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)
赞一波!1
相关文章
- 【说站】Python中SKlearn是什么
- 【说站】Python findall函数如何匹配字符串
- 【说站】Python如何提取字符串的内容
- 【说站】SKlearn如何在python安装?
- 【说站】python文件的三大访问方式
- 【说站】python中Pycharm的快捷键及用法
- 【说站】python整数的用法整理
- 【说站】python中Locust的安装和使用
- 【说站】python中DataFrame的运算总结
- 【说站】python中Pycharm如何调试视图
- 【说站】python中pandas有哪些功能特色
- 【说站】Python pandas和numpy的区别
- 【说站】python数据离散化是什么
- 【说站】python数据拼接如何实现
- 【说站】python中pandas排序的两种形式
- 【说站】python使用required定义必填字段
- 【说站】python marshmallow如何提供默认值
- 【说站】python dump方法的序列化
- 【说站】python中的Locust是什么
- 【说站】python中apply和transform的比较
文章评论
评论问答