怎么将list集合转为json字符串
时间: 2023-09-15 07:18:40 浏览: 504
java实现将实体类list集合,转化成geojson字符串
可以使用 Python 中的 `json` 模块来将 list 转换为 JSON 字符串。具体的步骤如下:
1. 导入 `json` 模块:`import json`
2. 定义一个 list:`my_list = [1, 2, 3, "hello", {"name": "world"}]`
3. 使用 `json.dumps()` 方法将 list 转为 JSON 字符串:`json_str = json.dumps(my_list)`
4. 输出 JSON 字符串:`print(json_str)`
完整代码如下所示:
```python
import json
my_list = [1, 2, 3, "hello", {"name": "world"}]
json_str = json.dumps(my_list)
print(json_str)
```
输出结果如下:
```
[1, 2, 3, "hello", {"name": "world"}]
```
注意:如果 list 中包含自定义对象,则需要先将对象转为字典或其他 JSON 可序列化的类型。
阅读全文