【说站】python如何读取大文件
2024-11-14
3
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电脑。)
赞一波!
相关文章
- 【说站】python字典合并特性是什么
- 【说站】python字典合并有哪些规范?
- 【说站】python Faust流处理库的介绍
- 【说站】python如何建立web服务
- 【说站】python int返回的方法探究
- 【说站】Python中GC算法是什么
- 【说站】python逻辑值检测如何实现
- 【说站】python indent如何打印JSON数据
- 【说站】python如何追写内容
- 【说站】python的浮点数占多少个字节
- 【说站】python反向输出数字
- 【说站】python中__file__属性的使用
- 【说站】python输入三个数求平均值
- 【说站】python提取字符串指定内容
- 【说站】python将数字转化为汉字
- 【说站】python快捷键
- 【说站】python交换两个变量的值
- 【说站】python截取字符串中特定部分
- 【说站】python统计不同字符的个数
- 【说站】python三元操作符如何赋值
文章评论
评论问答