728x90
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")
반응형
'파이썬' 카테고리의 다른 글
날짜, 시간 다루기 - 파이썬 (2) | 2024.07.24 |
---|---|
문자열안에 변수 값넣는 방법 - 파이썬 (0) | 2024.07.23 |
태그 삭제하기 - 파이썬 (0) | 2024.07.18 |
selenium 사용하기 - 파이썬 (0) | 2024.07.18 |
cloudflare 우회해서 크롤링 하기 - selenium, 파이썬 (0) | 2024.07.18 |