Python/Python - 파일
파일에서 한줄씩 읽어와 파일에 한줄씩 쓰는 Python 예제코드
webnautes
2024. 1. 24. 22:19
반응형
파일에서 한줄씩 읽어와 리스트에 저장했다가 다시 리스트를 파일에 한줄씩 쓰는 Python 예제 코드입니다.
2024. 1. 24 최초작성
full_filename = 'read_write.py' # 리스트에 파일 내용을 한줄씩 저장합니다. list_str = [] with open(full_filename, 'r', encoding='utf-8') as file: for row in file: list_str.append(row) # 리스트를 파일에 한줄씩 저장합니다. output_filename = 'output.txt' with open(output_filename, 'w', encoding='utf-8') as file: for str in list_str: file.write(str) |
반응형