본문 바로가기
python

파이썬 리스트를 tsv 로 저장

by 와우지니 2023. 5. 10.
반응형

파이썬 리스트를 tsv 로 저장

 

예시 리스트 만들기

# (질문, 대답) 형태로 예시 리스트를 생성합니다.
QA = [
    ("What is the primary function of the heart?", "To pump blood through the circulatory system."),
    ("Where is the Great Barrier Reef situated?", "Off the coast of Queensland, Australia"),
    ("What is the Sun mainly composed of?", "Hot plasma"),
    ("Who designed the Eiffel Tower?", "Gustave Eiffel"),
    ("Will there be a London Marathon in October 2023?", "In August 2021, race organisers confirmed that the 2023 event would take place on 23 April;")
]

 

리스트를 tsv 파일로 저장하기

with open('total.tsv', 'w') as f:
	# header 입력 부분
    f.write("question" + "\t" + "answer" + "\n")
    
    # 값 입력 부분
    for num, line in enumerate(QA):
        if num == len(QA):
        	# 마지막 라인에는 "\n" 을 넣지 않습니다.
            f.write(str(line[0]) + "\t" + str(line[1]))
        else:
            f.write(str(line[0]) + "\t" + str(line[1]) + '\n')

 

저장 파일 확인

반응형

댓글