python判断k是否在字典中存在
时间: 2024-05-04 19:19:38 浏览: 91
判断python字典中key是否存在的两种方法
5星 · 资源好评率100%
可以使用 `in` 关键字来判断一个键是否存在于字典中。例如:
```python
my_dict = {'name': 'Bob', 'age': 30, 'gender': 'male'}
if 'age' in my_dict:
print('age exists in the dictionary')
else:
print('age does not exist in the dictionary')
if 'address' in my_dict:
print('address exists in the dictionary')
else:
print('address does not exist in the dictionary')
```
输出结果为:
```
age exists in the dictionary
address does not exist in the dictionary
```
在这个例子中,我们首先创建了一个字典 `my_dict`,然后使用 `in` 关键字检查 `'age'` 和 `'address'` 是否存在于字典中。如果存在,输出存在的提示信息,否则输出不存在的提示信息。
阅读全文