>> lst2 = [{id: 2, x: "two"}, {id: 3, x:-6ren">
gpt4 book ai didi

Python:合并两个字典列表

转载 作者:太空狗 更新时间:2023-10-29 17:05:18 25 4
gpt4 key购买 nike

给定两个字典列表:

>>> lst1 = [{id: 1, x: "one"},{id: 2, x: "two"}]
>>> lst2 = [{id: 2, x: "two"}, {id: 3, x: "three"}]
>>> merge_lists_of_dicts(lst1, lst2) #merge two lists of dictionary items by the "id" key
[{id: 1, x: "one"}, {id: 2, x: "two"}, {id: 3, x: "three"}]

有什么方法可以实现merge_lists_of_dicts,它根据字典项的键合并两个字典列表?

最佳答案

也许是最简单的选择

result = {x['id']:x for x in lst1 + lst2}.values()

这只会在列表中保留唯一的 ids,但不会保留顺序。

如果列表非常大,更现实的解决方案是按 id 对它们进行排序并迭代合并。

关于Python:合并两个字典列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19561707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com