728x90 파일저장1 파일저장하기 - 파이썬 filepath = "test.txt" #파일 경로를 지정하여 파일열기with open(filepath, "w") as file: file.write("test input\n")#파일 내용 추가하기with open(filepath, "a") as file: file.write("test input\n")#인코딩 오류 시 인코딩해서 저장하기with open(filepath, "a", encoding='utf-8') as file: file.write("test input\n") 2024. 7. 18. 이전 1 다음 반응형