python判断字典中某个键是否存在
时间: 2023-09-11 10:04:53 浏览: 170
判断python字典中key是否存在的两种方法
5星 · 资源好评率100%
您可以通过使用 `in` 关键字来判断字典中某个键是否存在。具体来说,可以使用以下代码:
```python
my_dict = {'name': 'Alice', 'age': 25, 'gender': 'female'}
if 'name' in my_dict:
print('The key "name" exists in the dictionary')
else:
print('The key "name" does not exist in the dictionary')
```
输出结果为:“The key "name" exists in the dictionary”。如果将判断的键改为不在字典中的键,则输出结果将与上述结果相反。
阅读全文