python中将一个dictionary类型数据转成str类型数据
时间: 2023-06-07 13:08:23 浏览: 92
可以使用 json 库中的 dumps 函数将 dictionary 类型数据转成 str 类型数据,示例代码如下:
```python
import json
my_dict = {'name': 'John', 'age': 26, 'city': 'New York'}
my_str = json.dumps(my_dict)
print(my_str)
```
输出结果:
```
{"name": "John", "age": 26, "city": "New York"}
```
阅读全文