python json转换成str
时间: 2023-07-08 18:37:41 浏览: 99
简单介绍Python中的JSON模块
你可以使用 `json.dumps()` 函数将 Python 中的 JSON 对象转换为 JSON 字符串。例如:
```python
import json
json_obj = {'name': 'Alice', 'age': 25}
json_str = json.dumps(json_obj)
print(json_str)
```
输出结果为:
```
{"name": "Alice", "age": 25}
```
阅读全文