文章来源:https://www.toymoban.com/news/detail-432005.html
1.行遍历实现
在python中如果要将一个文件完全加载到内存中,
通过file.readlines()即可,
但是在文件占用较高时,
我们是无法完整的将文件加载到内存中的,
这时候就需要用到python的file.readline()
进行迭代式的逐行读取:文章来源地址https://www.toymoban.com/news/detail-432005.html
filename = 'hello.txt'
##python学习交流扣扣qun:660193417
with open(filename, 'r') as file:
line = file.readline()
counts = 1
while line:
if counts >= 50000000:
break
line =
到了这里,关于三种方法Python读取文件指定行,来看看你用过没?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!