码迷,mamicode.com
首页 > 编程语言 > 详细

python读取以非换行符分隔的超大文件,并逐行输出

时间:2019-03-21 01:18:08      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:while   print   文件   bsp   with open   输出   dex   open   break   

 

def myreadline(f, newline):
    buf = ""
    while True:
        while True:
            pos = buf.index(newline)
            yield buf[:pos]
            buf = buf[pos + len(newline)]

        chunk = f.read(4096)

        if not chunk:
            # 已读到结尾
            yield buf
            break
        buf += chunk

with open("input.txt") as f:
    for line in myreadline(f, "{|}":
        print (line)

 

python读取以非换行符分隔的超大文件,并逐行输出

标签:while   print   文件   bsp   with open   输出   dex   open   break   

原文地址:https://www.cnblogs.com/sqtu/p/10568906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!