Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

전체 파일을 버퍼로 읽고 Python에서 문자열로 반환하는 방법은 무엇입니까?


Python의 File 클래스' 읽기 기능은 자동으로 이를 관리합니다. 파이썬에서 파일을 열고 파일 핸들에서 read 함수를 호출하면 문자열의 전체 파일을 읽고 해당 문자열을 반환합니다.

with open('my_file.txt', 'r') as f:
    file_content = f.read() # Read whole file in the file_content string
print(file_content)