Python을 사용하여 파일에 한 줄씩 쓰기

Vaibhav Vaibhav 2021년12월4일
Python을 사용하여 파일에 한 줄씩 쓰기

프로그래밍을 배울 때 파일 작업 방법을 알아야 합니다. 파일에서 데이터를 읽는 방법, 파일에 데이터를 쓰는 방법, 파일에 데이터를 추가하는 방법 등을 알아야 합니다. 이 기사에서는 파일에 대해 수행할 수 있는 모든 작업에 초점을 맞추지 않고 파일에 쓰는 방법을 배웁니다. Python을 사용하여 파일을 한 줄씩.

Python을 사용하여 한 줄씩 파일에 쓰기

파일에 써야 하는 많은 문자열이 있다고 가정합니다. 줄 단위로 작성하려면 문자열이 개별적으로 나타나도록 각 줄 끝에 endline 문자 또는 \n을 추가해야 합니다. 동일한 내용은 다음 코드를 참조하십시오.

data = [
    "Hello World!",
    "This is a Python program.",
    "It will write some data to a file.",
    "Line by line.",
]

file = open("file.txt", "w")

for line in data:
    file.write(line + "\n")

file.close()
Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.

관련 문장 - Python File