python判断字典中某个键是否存在
时间: 2023-09-11 22:05:05 浏览: 64
判断python字典中key是否存在的两种方法
5星 · 资源好评率100%
您可以使用in关键字来判断字典中某个键是否存在。具体方法是使用以下代码:
```
key = 'your_key'
dict = {'key1': 'value1', 'key2': 'value2'}
if key in dict:
print('Key exists in the dictionary')
else:
print('Key does not exist in the dictionary')
```
您可以将“your_key”替换为您要查找的键名,将“{'key1': 'value1', 'key2': 'value2'}”替换为您的字典名称。
阅读全文