字典中如何判断key存在
时间: 2024-02-20 10:58:24 浏览: 50
判断python字典中key是否存在的两种方法
5星 · 资源好评率100%
在字典中判断一个key是否存在,可以使用in关键字,例如:
```
my_dict = {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'}
target_key = 'key2'
if target_key in my_dict:
print('The key exists in the dictionary.')
else:
print('The key does not exist in the dictionary.')
```
这段代码会输出:
```
The key exists in the dictionary.
```
其中,if target_key in my_dict会判断target_key是否在my_dict的key集合中,如果存在,则会执行if分支,否则执行else分支。
阅读全文