python中读取json文件
时间: 2023-09-10 09:10:43 浏览: 107
python读写json文件的简单实现
在 Python 中读取 JSON 文件可以使用标准库中的 `json` 模块,具体步骤如下:
1. 打开 JSON 文件,可以使用内置的 `open()` 函数来完成:
```python
import json
with open('data.json', 'r') as f:
data = json.load(f)
```
其中,`data.json` 是要读取的 JSON 文件名,`r` 表示以只读模式打开文件,并使用 `with` 语句来自动关闭文件。
2. 使用 `json.load()` 方法将文件内容读取到内存中:
```python
data = json.load(f)
```
3. 对读取到的数据进行操作,例如:
```python
print(data['name'])
```
完整示例代码如下:
```python
import json
with open('data.json', 'r') as f:
data = json.load(f)
print(data['name'])
```
其中,假设 `data.json` 文件内容如下:
```json
{
"name": "John Smith",
"age": 30,
"city": "New York"
}
```
阅读全文