python学习笔记整理 数据结构--字典 无序的 {键:值} 对集合 用于查询的方法 len(d) Return the number of items in the dictionary d. 返回元素个数 d[key] Return the item of d with key key. Raises a KeyError if key is not in the map. If a subclass of dict defines a method _missing_() and key
2种方式,update()和items()方式 In [14]: a Out[14]: {'a': 1, 'b': 2, 'c': 3} In [15]: c = {'d': 4} In [16]: a.update(c) In [17]: a Out[17]: {'a': 1, 'b': 2, 'c': 3, 'd': 4} In [18]: a = {'a': 1} In [19]: a Out[19]: {'a': 1} In [20]: c Out[20]: {'d': 4} In [2