Python: Load and Save A JSON File
作者:XD / 发表: 2023年5月25日 01:06 / 更新: 2023年5月25日 01:06 / 编程笔记 / 阅读量:675
Python: Load and Save A JSON File
import json
# load a json file
with open('data.json', 'r') as f:
data = json.load(f)
# save a file as the json
with open('data.json', 'w') as f:
json.dump(data, f)
相关标签