python读取以非换行符分隔的超大文件,并逐行输出
Posted 杜景喜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取以非换行符分隔的超大文件,并逐行输出相关的知识,希望对你有一定的参考价值。
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读取以非换行符分隔的超大文件,并逐行输出的主要内容,如果未能解决你的问题,请参考以下文章