可以通过以下步骤实现:
import json
data = {
"name": "John",
"age": 30,
"city": "New York"
}
with open("data.json", "w") as json_file:
json.dump(data, json_file)
这将创建一个名为"data.json"的文件,并将变量"data"保存为JSON格式。
with open("data.json", "r") as json_file:
data = json.load(json_file)
这将从"data.json"文件中读取JSON数据,并将其存储在变量"data"中。
通过以上步骤,你可以使用Python将变量保存为JSON文件,并在需要时从JSON文件中读取变量。这在许多场景中非常有用,例如保存配置信息、数据持久化等。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云