JSON 파일을 만들기 위해서는 아래와 같은 코드 이용!
import json
a=[{'name':'kim','age':20,'area':'Seoul'},{'name':'park','age':30,'area':'Suwon'},{'name':'choi','age':35,'area':'Busan'}]
file_path = "./sample.json"
with open(file_path, 'w') as outfile:
json.dump(a, outfile, indent=4)