使用Python 以相反順序讀取文件
假設您有一個很長的文本文件,並且希望從最後一行讀取其內容初始行。如何在 Python 中實現此目的?
答案:
以下Python 產生器函數有效地以相反順序讀取檔案:
import os def reverse_readline(filename, buf_size=8192): """A generator that returns the lines of a file in reverse order""" with open(filename, 'rb') as fh: segment = None offset = 0 fh.seek(0, os.SEEK_END) file_size = remaining_size = fh.tell() while remaining_size > 0: offset = min(file_size, offset + buf_size) fh.seek(file_size - offset) buffer = fh.read(min(remaining_size, buf_size)) # remove file's last "\n" if it exists, only for the first buffer if remaining_size == file_size and buffer[-1] == ord('\n'): buffer = buffer[:-1] remaining_size -= buf_size lines = buffer.split('\n'.encode()) # append last chunk's segment to this chunk's last line if segment is not None: lines[-1] += segment segment = lines[0] lines = lines[1:] # yield lines in this chunk except the segment for line in reversed(lines): # only decode on a parsed line, to avoid utf-8 decode error yield line.decode() # Don't yield None if the file was empty if segment is not None: yield segment.decode()
該生成器函數具有節省記憶體的性能,適用於大文件。它將檔案分割成可管理的區塊並逐行向後處理它們。
以上是如何使用Python有效率地逆序讀取大文本檔?的詳細內容。更多資訊請關注PHP中文網其他相關文章!