python에서 json 파일 불러오기 import json FILE_DIR = "data/data1.json" # 파일 경로 file_json = open(FILE_DIR, encoding='UTF8') file_data = json.load(file_json)