python读取json
时间: 2023-10-18 09:23:52 浏览: 65
python读写json文件的简单实现
读取 JSON 文件可以使用 Python 内置的 json 模块。下面是一个简单的例子:
```python
import json
# 读取 JSON 文件
with open('example.json', 'r') as f:
data = json.load(f)
# 打印 JSON 数据
print(data)
```
其中,`example.json` 是要读取的 JSON 文件名。`json.load()` 方法可以将 JSON 数据转换成 Python 对象,例如字典、列表等。在上面的例子中,我们将转换后的 Python 对象赋值给了变量 `data`,然后打印出来。
阅读全文