>백엔드 개발 >파이썬 튜토리얼 >Python을 사용하여 파일을 역순으로 읽으려면 어떻게 해야 합니까?

Python을 사용하여 파일을 역순으로 읽으려면 어떻게 해야 합니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-25 15:45:12715검색

How Can I Read a File in Reverse Order Using Python?

Python에서 파일을 역순으로 읽기

파일 끝부터 데이터를 처리해야 하는 경우 다음이 필요합니다. 파일을 역순으로 읽습니다. Python에서는 생성기 기반 접근 방식을 사용하여 이를 효과적으로 달성할 수 있습니다.

역행 읽기용 생성기

다음 Python 생성기인 reverse_readline을 사용하면 파일의 줄을 거꾸로 순서:

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()

사용법

reverse_readline 생성기를 사용하려면 바이너리 모드에서 읽기 위해 파일을 열고 역순으로 줄을 반복합니다.

with open('input.txt', 'rb') as input_file:
    for line in reverse_readline(input_file):
        # Process line in reverse order

위 내용은 Python을 사용하여 파일을 역순으로 읽으려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.