gpt4 book ai didi

python - 在 Python 中追加字典

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

如何在 Python 中附加如下字典?

list1 = {'value1':1}
list2 = {'value2':2}

list1.append(list2)

追加时:

'dict' object has no attribute 'append'

那我怎样才能同时加入这两个列表呢?

最佳答案

这些是字典,不是列表。

试试 list1.update(list2)

update和append的语义不同,是因为底层数据结构不同。字典中现有键的值将被参数字典中的值覆盖。

关于 Data Structures 的 Python 教程部分经历了这个以及更多。

关于python - 在 Python 中追加字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17778028/

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