> 백엔드 개발 > 파이썬 튜토리얼 > Python에서 파일을 거꾸로 효율적으로 읽으려면 어떻게 해야 합니까?

Python에서 파일을 거꾸로 효율적으로 읽으려면 어떻게 해야 합니까?

Barbara Streisand
풀어 주다: 2024-12-01 19:20:15
원래의
153명이 탐색했습니다.

How Can I Efficiently Read a File Backwards in Python?

Python을 사용하여 파일을 역순으로 효율적으로 읽는 방법

파일을 마지막 줄부터 역순으로 읽으려면 Python은 강력한 솔루션을 제공합니다. 라인을 역방향으로 반복하는 생성기 함수입니다. order.

효율적인 생성기 솔루션:

다음 생성기 함수인 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()
로그인 후 복사

이 함수는 오프셋을 적용하고 끝부터 시작하여 역방향 청크로 파일을 읽습니다. 후행 줄바꿈이 있을 수 있는 마지막 줄의 특수한 경우를 처리하면서 역순으로 줄을 생성합니다.

이 생성기를 사용하려면 파일을 바이너리 모드로 열고 줄을 역순으로 반복하면 됩니다.

for line in reverse_readline("my_file.txt"):
    # Process line in reverse order
로그인 후 복사

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

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿