이어 붙이기(Append)
with open('file.txt', 'a') as f:
print("Hello world!", file=f)
open 함수 안에 'a'
덮어쓰기(Overwrite)
with open('file.txt', 'w') as f:
print("Hello world!", file=f)
open 함수 안에 'w'
'Python' 카테고리의 다른 글
[python] tuple 에서 특정 field로 value값 추출 (0) | 2023.06.28 |
---|---|
리눅스에서 .env를 읽지 못하는 경우(vscode에서는 됨) (0) | 2023.06.27 |
[pyinstaller] No module named 'selenium' 에러 (0) | 2023.04.23 |
[python] TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType' (0) | 2022.10.15 |
[python] 패키지 설치해도 에러 발생 'requirement already satisfied no module named' (0) | 2022.09.24 |