반응형
파이썬 리스트를 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')
저장 파일 확인
반응형
'python' 카테고리의 다른 글
pytorch tensor.new, 파이토치 tensor.new new_zeros(), new_ones(), new_full() (0) | 2023.05.18 |
---|---|
RNN의 파라미터 개수와 토큰 길이의 관계 (0) | 2023.05.15 |
파이썬 assert 사용법 (0) | 2023.05.10 |
파이썬 홈 디렉토리 경로 확장 법 os.path.expanduser (0) | 2023.05.09 |
파이썬 처음 문자 확인 (1) | 2023.05.09 |
댓글