python 字典判断是否存在key
时间: 2023-09-06 08:10:07 浏览: 123
判断python字典中key是否存在的两种方法
5星 · 资源好评率100%
在 Python 中,可以使用 `in` 关键字来判断一个字典中是否存在某个键。示例代码如下:
```python
# 创建一个字典
my_dict = {"name": "Alice", "age": 30, "city": "New York"}
# 判断字典中是否存在某个键
if "name" in my_dict:
print("键 'name' 存在于字典中")
else:
print("键 'name' 不存在于字典中")
```
输出结果:
```
键 'name' 存在于字典中
```
如果想判断某个键是否不存在,可以用 `not in` 关键字。示例代码如下:
```python
# 判断字典中是否不存在某个键
if "salary" not in my_dict:
print("键 'salary' 不存在于字典中")
else:
print("键 'salary' 存在于字典中")
```
输出结果:
```
键 'salary' 不存在于字典中
```
阅读全文