使用JSON保存/重新打开数据的方法如下:
import json
data = {
"name": "John",
"age": 30,
"city": "New York"
}
# 将数据保存为JSON格式
with open("data.json", "w") as json_file:
json.dump(data, json_file)
在上述示例中,我们使用json.dump()
函数将data
字典保存为JSON格式,并将其写入名为data.json
的文件中。
import json
# 从JSON文件中读取数据
with open("data.json", "r") as json_file:
data = json.load(json_file)
# 打印数据
print(data)
在上述示例中,我们使用json.load()
函数从名为data.json
的文件中读取JSON数据,并将其转换为Python中的数据类型。然后,我们可以对数据进行进一步的操作或打印出来。
领取专属 10元无门槛券
手把手带您无忧上云