728x90 인코딩2 파일저장하기 - 파이썬 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. 파일 읽어오기 - 파이썬 from urllib.request import urlopentxtPage = urlopen("https://www.test.co.kr/test.txt")print(txtPage.read())//인코딩시print(str(txtPage.read(), 'utf-8')) 2024. 7. 2. 이전 1 다음 반응형