Python常用札记 2018-03-02 Python 字典的常用知识 文章目录 1. 字典处理1.0.1. 合并两个字典2. 注脚 字典处理 合并两个字典 如果使用 Python 3.5+,那么如下方式是最快、最简洁、最 Pythonic 的[1][2]: 1combine-dict = {**dictA, **dictB} 这段代码在功能上与如下方案是等价的: 新建了一个空字典,然后依次往里面填充了来自dictA和dictB的元素 123combine-dict = {}combine-dict.update(dictA)combine-dict.update(dictB) 注脚 The Idiomatic Way to Merge Dictionaries in Python - Trey Hunner ↩︎ 怎样合并字典最符合Python语言习惯?| 编程派 | Coding Python ↩︎