Python의 파일 작업은 C 언어의 fopen과 매우 유사한 open 함수를 통해 수행할 수 있습니다. open 함수를 통해 파일 객체를 얻은 후 read(), write() 등의 메서드를 호출하여 파일을 읽고 씁니다.
1.open
open을 사용하여 파일을 연 후에는 파일 개체의 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. 파일 읽기
텍스트 파일 읽기
input = open('data', 'r') #第二个参数默认为r input = open('data')
바이너리 파일 읽기
input = 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
3. 파일 쓰기
텍스트 파일 쓰기
output = open('data', 'w')
바이너리 파일 쓰기
output = open('data', 'wb')
쓰기 파일 추가
output = open('data', 'w+')
데이터 쓰기
file_object = open('thefile.txt', 'w') file_object.write(all_the_text) file_object.close( )
여러 줄 쓰기
file_object.writelines(list_of_text_strings)
writeline을 호출하여 여러 줄을 쓰는 것이 write를 사용하여 한 번에 쓰는 것보다 성능이 더 높다는 점에 유의하세요.
위 내용은 Python은 스크립트 코드 표시를 구현하기 위해 파일 읽기 및 쓰기를 엽니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!