Python字典中x.get用法
时间: 2024-03-05 16:52:06 浏览: 188
python字典get()方法用法分析
Python 字典中的 get() 方法用于返回指定键的值,如果键不存在于字典中,则返回默认值。方法语法如下:
`x.get(key, default=None)`
其中,key表示字典中要查找的键,default则是可选参数,表示如果指定键的值不存在时,返回的默认值。
例如,对于以下字典 x:
```python
x = {'a': 1, 'b': 2, 'c': 3}
```
我们可以使用 get() 方法获取字典中指定键的值,例如:
```python
print(x.get('a')) # 输出 1
print(x.get('d')) # 输出 None
print(x.get('d', 'Key not found')) # 输出 'Key not found'
```
在第二个例子中,因为字典中不存在键为 'd' 的元素,所以返回的是 None。在第三个例子中,我们通过指定默认值为 'Key not found',在查找不到键时返回了该默认值。
阅读全文