go 读取文件中的json数据 以后并写入数据到文件中
以下是Python代码示例:
import json
# 读取json文件
with open('data.json', 'r') as f:
data = json.load(f)
# 修改数据
data['name'] = 'John'
data['age'] = 30
# 写入json文件
with open('data.json', 'w') as f:
json.dump(data, f)
首先,我们使用 open() 函数打开一个名为 data.json 的文件,并使用 json.load() 函数将文件中的json数据读取到 data 变量中。
然后,我们修改了 data 变量中的数据。
最后,我们使用 open() 函数以写入模式打开 data.json 文件,并使用 json.dump() 函数将修改后的数据写入文件中。
原文地址: https://www.cveoy.top/t/topic/Ils 著作权归作者所有。请勿转载和采集!