在 Python 中,get 方法是用于字典(dictionary)对象的。get 方法的作用是在字典中查找给定键的值,如果没有找到,则返回给定的默认值。
使用方法是:
value = dictionary.get(key, default_value)
其中,key 是要查找的键,default_value 是在找不到对应键值时返回的默认值。
例如:
fruits = {'apple': 'red', 'banana': 'yellow'}
color = fruits.get('apple', 'unknown') # color 变量的值为 'red'
color = fruits.get('orange', 'unknown') # color 变量的值为 'unknown'
在这个例子中,我们使用 get 方法来查找字典中的键 'apple' 和 'orange' 对应的值。当我们查找 'apple' 时,字典中有对应的键值,所以返回 'red'。当我们查找 'orange' 时,字典中没有对应的键值,所以返回默认值 'unknown'。
注意:如果你想在字典中插入一个新的键值对,你可以使用如下语法:
dictionary[key]= value
例如:
fruits = {'apple': 'red', 'banana': 'yellow'}
fruits['orange'] = 'orange' # 向字典中插入一个新的键值对
print(fruits) # 输出:{'apple': 'red', 'banana': 'yellow', 'orange': 'orange'}