Python 字典 (Dictionary) get() 方法

返回上一级

Python 字典 ( Dictionary ) 对象的 get() 方法返回指定键的值

如果键不存在字典中,则返回 参数 default

语法

dict.get(key, default=None)

参数

参数 说明
key 字典中要查找的键
default 如果指定键的值不存在时,返回该默认值

返回值

返回指定键的值,如果键不存在则返回参数 default

范例

下面的代码使用 get() 方法取回字典 people 中的键 wifecity 对应的值

>>> people = {'city': 'PEK', 'age': 28, 'name': 'Li Bai'}
>>> people.get('city')
'PEK'
>>> people.get('wife')
>>> people.get('wift','where')
'where'

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.