json 파일 예시 [ {"title": "Oh Boy", "songId": "30179107", "artist": "AOA", "img": "aaa.jpg"}, {"title": "With ELVIS", "songId": "30179108", "artist": "AOA", "img": "bbb.jpg"}, {"title": "Good Luck", "songId": "8181755", "artist": "AOA", "img": "ccc.jpg"}, ... ] 코드 import json import csv # music.json 파일을 읽어서 melon.csv 파일에 저장 with open('music.json', 'r', encoding = 'utf-8') as input_file, open('melon..