python update合并字典的方法

2024年06月16日 python字典 Python51

1、每次调用update()现有键的值,键都会更新为新值。

在这种情况下,您将无法使用不同的范围来优先访问重复密钥。

2、使用update(),为给定键提供的最后一个值将永远占上风。在循环中创建常规字典需要O(nm),而从最终字典中检索一个键需要O(1)。

实例

>>> for_adoption = {"dogs": 10, "cats": 7, "pythons": 3}
>>> vet_treatment = {"cats": 2, "dogs": 1}
 
>>> # Merge dictionaries with .update()
>>> pets = {}
>>> pets.update(for_adoption)
>>> pets.update(vet_treatment)
>>> pets
{'dogs': 1, 'cats': 2, 'pythons': 3}

以上就是python update合并字典的方法,希望对大家有所帮助。

本文链接:http://so.lmcjl.com/news/6668/

展开阅读全文