如何判断一个值在不在字典的键内
时间: 2024-05-04 20:18:43 浏览: 39
可以使用 `in` 关键字来判断一个值是否在字典的键内。具体代码如下:
```python
my_dict = {'apple': 2, 'banana': 3, 'orange': 4}
if 'apple' in my_dict:
print('apple is in my_dict')
else:
print('apple is not in my_dict')
if 'watermelon' in my_dict:
print('watermelon is in my_dict')
else:
print('watermelon is not in my_dict')
```
输出结果为:
```
apple is in my_dict
watermelon is not in my_dict
```
其中,第一个 `if` 语句输出为真,因为 `'apple'` 是字典 `my_dict` 的一个键;而第二个 `if` 语句输出为假,因为 `'watermelon'` 不是字典 `my_dict` 的一个键。
阅读全文