python json存取数据
时间: 2023-09-29 13:02:24 浏览: 97
Python如何存储数据到json文件
你可以使用Python的内置模块`json`来进行JSON数据的存取操作。以下是一个简单的示例:
```python
import json
# 存储数据到JSON文件
data = {"name": "John", "age": 30, "city": "New York"}
with open("data.json", "w") as json_file:
json.dump(data, json_file)
# 从JSON文件加载数据
with open("data.json", "r") as json_file:
loaded_data = json.load(json_file)
print(loaded_data) # 输出: {"name": "John", "age": 30, "city": "New York"}
```
在上面的示例中,我们首先使用`json.dump()`方法将数据存储到名为"data.json"的JSON文件中。然后,使用`json.load()`方法从JSON文件中加载数据,并将其存储在变量`loaded_data`中。最后,我们打印加载的数据。
阅读全文