python读取 json
时间: 2023-10-18 20:17:26 浏览: 88
python读取json文件
5星 · 资源好评率100%
要读取 JSON 文件,可以使用 Python 中的 `json` 模块。
假设有一个名为 `data.json` 的 JSON 文件,包含以下内容:
```json
{
"name": "John Smith",
"age": 30,
"city": "New York"
}
```
以下是如何使用 Python 读取此文件的示例代码:
```python
import json
# 打开文件
with open('data.json') as f:
# 读取文件内容
data = json.load(f)
# 输出读取的数据
print(data)
```
输出:
```python
{'name': 'John Smith', 'age': 30, 'city': 'New York'}
```
这样,就可以将 JSON 文件中的数据读取到 Python 变量中。
阅读全文