扫码一下
查看教程更方便
Python 字典(Dictionary) get() 方法返回指定键的值。
get()方法语法:
dict.get(key, default=None)
返回指定键的值,如果键不在字典中返回默认值 None 或者设置的默认值。
以下实例展示了 get()方法的使用方法:
#!/usr/bin/python
dict = {'Name': 'Runoob', 'Age': 27}
print "Value : %s" % dict.get('Age')
print "Value : %s" % dict.get('Sex', "Not Available")
上述代码执行结果如下
Value : 27
Value : Not Available