Notice
Recent Posts
Recent Comments
Link
SeouliteLab
[Python/파이썬] Text 파일 읽고 쓰는 방법 본문
Python에서는 텍스트 파일을 읽고 쓰는 기능을 제공합니다. 파일을 읽어오거나 쓰는 과정은 매우 중요하며, 이를 통해 데이터를 저장하고 처리할 수 있습니다. 이번에는 파일을 읽고 쓰는 세 가지 주요 작업에 대해 알아보겠습니다: read, write, append.
1. 파일 읽기 (read)
file_path = "example.txt"
with open(file_path, "r") as file:
content = file.read()
print(content)
2. 파일 쓰기 (write)
file_path = "example.txt"
with open(file_path, "w") as file:
file.write("This is a sample text.\n")
file.write("Writing text to a file in Python.\n")
3. 파일 추가하기 (append)
file_path = "example.txt"
with open(file_path, "a") as file:
file.write("Appending text to an existing file.\n")
file.write("Adding more content using Python.\n")
'프로그래밍' 카테고리의 다른 글
[Python/파이썬] 소수점 버리는 방법 (0) | 2024.03.01 |
---|---|
[Python/파이썬] 두 개의 리스트 하나로 합치는 방법 (0) | 2024.03.01 |
[Python/파이썬] 문자열 비교 방법 (0) | 2024.03.01 |
[Python/파이썬] os.walk()를 사용한 디렉토리 및 파일 탐색하기 (0) | 2024.03.01 |
[Python/파이썬] HTTP 요청을 처리 (feat.requests 라이브러리) (0) | 2024.02.29 |