10
CSV 파일을 여러 줄 JSON으로 변환하는 방법은 무엇입니까?
여기 내 코드, 정말 간단한 것들이 있습니다. import csv import json csvfile = open('file.csv', 'r') jsonfile = open('file.json', 'w') fieldnames = ("FirstName","LastName","IDNumber","Message") reader = csv.DictReader( csvfile, fieldnames) out = json.dumps( [ row for row in reader ] ) jsonfile.write(out) 일부 필드 이름을 선언하고 리더는 CSV를 사용하여 파일을 읽고 파일 이름을 …