Python JSON file 다루는 방법 (json 파일 읽기, 쓰기, 수정 하는 방법)
Python JSON file 다루는 방법 (json 파일 읽기, 쓰기, 수정 하는 방법) Python 에서 json 파일을 읽고, 쓰고, 수정하는 방법을 알려드리도록 하겠습니다. JSON 파일 쓰는 방법 - json.dump() import json data = { "olivia" : { "gender": "female", "age" : 25, "hobby" : ["reading", "music"] }, "Tyler" : { "gender": "male", "age" : 28, "hobby" : ["development", "painting"] } } file_path = "./test.json" with open(file_path, 'w', encoding='utf-8') as file: json.d..
2022. 1. 3.