python中json模块的使用
时间: 2023-11-27 15:47:06 浏览: 87
Python json模块使用实例
Python中的`json`模块提供了用于处理JSON数据的方法。下面是一些常用的`json`模块的使用示例:
1. 将Python对象转换为JSON字符串:
```python
import json
data = {'name': 'John', 'age': 30}
json_str = json.dumps(data)
print(json_str)
```
2. 将JSON字符串解析为Python对象:
```python
import json
json_str = '{"name": "John", "age": 30}'
data = json.loads(json_str)
print(data)
```
3. 将Python对象写入JSON文件:
```python
import json
data = {'name': 'John', 'age': 30}
with open('data.json', 'w') as f:
json.dump(data, f)
```
4. 从JSON文件中读取数据并解析为Python对象:
```python
import json
with open('data.json', 'r') as f:
data = json.load(f)
print(data)
```
这些示例展示了如何使用`json`模块将Python对象转换为JSON格式或将JSON格式转换为Python对象。你可以根据自己的需求选择适当的方法来处理JSON数据。
阅读全文