gpt4 book ai didi

python - 将 2 个字典列表合并到一个字典列表中

转载 作者:行者123 更新时间:2023-11-30 21:58:34 24 4
gpt4 key购买 nike

在 python3 中我有 2 个列表:

listA = [{'aString': 'someone', 'aNumber': 123}]
listB = [{'anotherNumber': 456}]

如何将它们组合成一个如下所示的单个列表?

listC = [{'aString': 'someone', 'aNumber': 123, 'anotherNumber': 456}]

如果我使用,

listC = listA + listB

我得到:

listC = [{'aString': 'someone', 'aNumber': 123}, {'anotherNumber': 456}]

最佳答案

您可以将两个列表解压到字典构造函数中,然后将两个字典解压为一个:

[{**dict(*listA), **dict(*listB)}]

关于python - 将 2 个字典列表合并到一个字典列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54886347/

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