在Python中,可以使用json
模块来读写JSON格式的文件。下面是一个详细的示例,演示了如何读写JSON文件:
python
import json
# 写入JSON文件
data = {
"name": "John",
"age": 30,
"city": "New York"
}
with open('data.json', 'w') as f:
json.dump(data, f)
# 读取JSON文件
with open('data.json', 'r') as f:
loaded_data = json.load(f)
print(loaded_data)
在这个示例中,首先定义了一个字典data
,然后使用json.dump
将数据写入到名为data.json
的文件中。接着使用json.load
读取data.json
文件,并将读取的数据加载到loaded_data
变量中,最后打印出加载的数据。