标签:class 元组 update 字典 哈希表 添加 false 指定 序列
也被称为哈希表
常用的字典内置方法
dict.clear()
dict.fromkeys()
#创建一个新字典,以序列seq中元素做字典的键,val为字典所有键对应的初始值 >>> list =[1,2,3] >>> dict = dict.fromkeys(list) >>> dict {1: None, 2: None, 3: None} >>> dict = dict.fromkeys(list,1) >>> dict {1: 1, 2: 1, 3: 1}
dict.get(key, default=None) #返回指定键的值,如果值不在字典中返回default值
dict.has_key(key) #如果键在字典dict里返回true,否则返回false
dict.items() #以列表返回可遍历的(键, 值) 元组数组
dict.keys() #以列表返回一个字典所有的键
dict.values() #以列表返回字典中的所有值
dict.setdefault(key, default=None) #和get()类似, 但如果键不已经存在于字典中,将会添加键并将值设为default
dict.update()
#把字典dict2的键/值对更新到dict里 >>> dict1 = {1:‘a‘} >>> dict2 = {2:‘b‘} >>> dict1.update(dict2) >>> dict1 {1: ‘a‘, 2: ‘b‘}
标签:class 元组 update 字典 哈希表 添加 false 指定 序列
原文地址:https://www.cnblogs.com/lalalaxpf/p/9501484.html