gpt4 book ai didi

python - 合并字典上的键 - Python

转载 作者:太空宇宙 更新时间:2023-11-04 10:22:04 26 4
gpt4 key购买 nike

我想在 python 的图形中使用最小切割算法,这样:

 { 1 : [5, 8, 10], 2 :[3, 8, 9] } == { 1 : [5, 8, 10, 3, 9] }

合并字典的更 pythonic 方式是什么?

最佳答案

您可以import operator 然后reduce 字典values 像这样将它们相加

set(reduce(operator.add, d.values())) # the set of each successive value added to the next

关于python - 合并字典上的键 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31708876/

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