Python 字典 (Dictionary) get() 方法
Python 字典 ( Dictionary ) 对象的 get() 方法返回指定键的值
如果键不存在字典中,则返回 参数 default
语法
dict.get(key, default=None)
参数
参数 | 说明 |
---|---|
key | 字典中要查找的键 |
default | 如果指定键的值不存在时,返回该默认值 |
返回值
返回指定键的值,如果键不存在则返回参数 default
范例
下面的代码使用 get() 方法取回字典 people 中的键 wife
和 city
对应的值
>>> people = {'city': 'PEK', 'age': 28, 'name': 'Li Bai'} >>> people.get('city') 'PEK' >>> people.get('wife') >>> people.get('wift','where') 'where'