◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
在 python 中转换 string 为 list[dicts]
您需要将一个 string 转换成一个包含字典的 list。为此,可以使用以下步骤:
示例代码:
import json str_content = ''' [ { "id": "failure", "description": null, "event": [], "rowid": 1 }, { "id": "virtual", "description": null, "event": [], "rowid": 2 }, { "id": "cleaning", "description": null, "event": [], "rowid": 3 } ] ''' expected_result_converted = json.loads(str_content) print(expected_result_converted)
输出:
立即学习“Python免费学习笔记(深入)”;
[{'Id': 'Failure', 'Description': None, 'Event': [], 'RowId': 1}, {'Id': 'Virtual', 'Description': None, 'Event': [], 'RowId': 2}, {'Id': 'Cleaning', 'Description': None, 'Event': [], 'RowId': 3}]
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。