python 将 json文件读取并储存为字典
时间: 2023-06-23 13:57:27 浏览: 102
Python处理json字符串转化为字典的简单实现
5星 · 资源好评率100%
在Python中,可以使用`json`模块来读取和解析JSON格式的数据。具体实现方法如下:
1. 导入`json`模块
```python
import json
```
2. 打开JSON文件并读取数据
```python
with open('file.json', 'r') as f:
data = json.load(f)
```
这里假设JSON文件名为`file.json`,并且处于同一目录下。`json.load()`方法将文件中的JSON数据读取并解析成Python对象。
3. 将JSON数据转换为字典
```python
my_dict = dict(data)
```
将读取的JSON数据赋值给一个字典,即可将JSON文件中的数据储存为字典。
完整代码示例:
```python
import json
with open('file.json', 'r') as f:
data = json.load(f)
my_dict = dict(data)
print(my_dict)
```
其中`file.json`文件内容如下:
```
{
"name": "Tom",
"age": 18,
"gender": "male"
}
```
输出结果如下:
```
{'name': 'Tom', 'age': 18, 'gender': 'male'}
```
这样就可以将JSON文件中的数据读取并储存为字典了。
阅读全文