python json list
时间: 2023-11-17 20:04:38 浏览: 117
python 列表
在Python中,如果你想将一个list转换成一个dict,你可以使用json.loads()函数来实现。下面是一个示例代码:
import json
# 假设你的list类型的json数据是textJson
textJson = '[{"name": "Alice", "age": 25}, {"name": "Bob", "age": 30}]'
# 使用json.loads()函数将list转换成dict
dictJson = json.loads(textJson)
# 打印转换后的dict类型的json数据
print(dictJson)
上述代码中,我们首先将list类型的json数据赋值给变量textJson。然后使用json.loads()函数将其转换成dict类型的json数据,赋值给变量dictJson。最后我们打印出转换后的dict类型的json数据。
阅读全文