python dict转string
时间: 2023-10-04 13:10:59 浏览: 137
python实现字典(dict)和字符串(string)的相互转换方法
要将 Python 字典(dict)转换为字符串(string),你可以使用 `json` 模块中的 `dumps()` 方法。下面是一个示例:
```python
import json
my_dict = {"name": "John", "age": 30, "city": "New York"}
my_string = json.dumps(my_dict)
print(my_string)
```
输出:
```
{"name": "John", "age": 30, "city": "New York"}
```
使用 `json.dumps()` 方法将字典转换为字符串后,该字符串可以在需要的地方进行传输或保存。
阅读全文