CLOSE

"""파일을 다루는 데 다음 순서를 준수해야 한다.1) open file2) read/write file3) close file""" # 파일 열기 'w' 는 write 모드 f = open('test.txt', 'w') # 파일에 텍스트를 씀 for i in range(1, 11): f.write(f'{i}번째 줄 ... \n') # 파일 닫기 f.close() # 인코딩 오류 발생시 File - Setting - File Encodings -에서 다음 항목을 UTF-8로 변경한다. # with 구문: 리소스를 사용한 후 close() 메소드를 자동으로 호출 # with ... as 변수: 실행문 with open('test2.txt', mode = 'w', encoding= 'utf-8') as f:..
Codezoy
'CLOSE' 태그의 글 목록