1.openopen을 사용하여 파일을 연 후에는 파일 개체의 close() 메서드를 호출해야 합니다. 예를 들어, try/finally 문을 사용하여 파일이 최종적으로 닫힐 수 있는지 확인할 수 있습니다.
file_object = open('thefile.txt') try: all_the_text = file_object.read( ) finally: file_object.close( )
참고: 파일을 열 때 예외가 발생하면 파일 객체 file_object가 close() 메서드를 실행할 수 없기 때문에 open 문을 try 블록에 배치할 수 없습니다.
2. 파일 읽기, 텍스트 파일 읽기 입력 = open('data', 'r')
#第二个参数默认为r input = open('data')
바이너리 파일 읽기 입력 = open('data', 'rb')
모든 내용 읽기 file_object = open('thefile.txt')
try: all_the_text = file_object.read( ) finally: file_object.close( )
고정 바이트 읽기 file_object = open('abinfile', 'rb')
try: while True: chunk = file_object.read(100) if not chunk: break do_something_with(chunk) finally: file_object.close( )
읽기 각 줄 list_of_all_the_lines = file_object.readlines( )
파일이 텍스트 파일인 경우 파일 개체를 직접 탐색하여 각 줄을 가져올 수도 있습니다.
for line in file_object: process line
파일 쓰기 텍스트 파일 쓰기 출력 = open( 'data.txt', 'w')
바이너리 파일 쓰기 출력 = open('data.txt', 'wb')
쓰기 파일 추가 출력 = open('data.txt', 'a')
output .write("\n都有是好人") output .close( )
쓰기 데이터 file_object = open('thefile.txt', 'w')
file_object.write(all_the_text) file_object.close( )
위 내용은 텍스트 콘텐츠 예제를 추가하기 위해 파일을 읽고 쓰기 위해 Python 파일 열기 작업을 사용하는 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!