python字典中的get方法
描述
get()方法可以根据字典中的key访问对应的value,如果没有要访问的key,则返回默认值。
语法
dict.get(key, default=None)
key – 字典中要查找的键。
default – 如果指定键的值不存在时,返回该默认值。
实例
dict = {‘Name’: ‘wh’, ‘Age’: 27,‘address’:‘hei’}
print (dict.get(‘Age’)) # 27
print (dict.get(‘Sex’, “Never”)) # Never
注意
如果字典里面嵌套有字典,无法通过 get() 直接获取 value
dict_test = {‘Name’: ‘Runoob’, ‘num’:{‘first_num’: ‘66’, ‘second_num’: ‘70’}, ‘age’: ‘15’}
print(dict_test.get(‘first_num’)) # None
print(dict_test.get(‘num’).get(‘first_num’)) # 66
https://www.runoob.com/python/att-dictionary-get.html