Python 中检查字典中是否有多个键
检查字典中是否有多个键:
- 使用生成器表达式迭代包含键的元组。
-
使用
in
运算符检查每个键是否在字典中。 -
将结果传递给
all()
函数。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
# ✅ check if multiple keys in dict using all()
if all(key in my_dict for key in ("name", "country")):
# 👇️ this runs
print('multiple keys are in the dictionary')
# ----------------------------------------------
# ✅ check if multiple keys in dict using set object
if {'name', 'country'} <= my_dict.keys():
# 👇️ this runs
print('multiple keys are in the dictionary')
我们将要测试的多个键包装在一个元组中,并使用生成器表达式迭代元组。
生成器表达式用于对每个元素执行某些操作或选择满足条件的元素子集。
在每次迭代中,我们使用 in 运算符来检查字典中是否存在当前键。
in 运算符测试成员资格。 例如,如果 k 是 d 的成员,则 k in d
的计算结果为 True,否则计算结果为 False。
与字典一起使用时,运算符会检查字典对象中是否存在指定键。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
print('name' in my_dict) # 👉️ True
print('another' in my_dict) # 👉️ False
最后一步是将生成器对象传递给 all()
函数。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
if all(key in my_dict for key in ("name", "country")):
# 👇️ this runs
print('multiple keys are in the dictionary')
all()
内置函数将可迭代对象作为参数,如果可迭代对象的所有元素都为真(或可迭代对象为空),则返回 True。
如果字典中存在所有键,则 all()
函数将返回 True,否则返回 False。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
# 👇️ True
print(all(key in my_dict for key in ('name', 'country')))
# 👇️ False
print(all(key in my_dict for key in ('another', 'country')))
或者,我们可以使用集合对象。
使用 set 检查字典中是否有多个键
检查字典中是否有多个键:
- 将键包装在一个集合对象中。
-
使用
dict.keys()
方法来查看字典的键。 - 检查字典键的视图中是否存在多个键。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
if {'name', 'country'} <= my_dict.keys():
# 👇️ this runs
print('multiple keys are in the dictionary')
我们使用花括号将键作为元素添加到集合对象中。
集合对象是唯一元素的无序集合
使用集合的好处是我们可以检查集合中的元素是否是另一个序列的子集,例如 字典键的视图。
dict.keys
方法返回字典键的新视图。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
# 👇️ dict_keys(['name', 'country', 'age'])
print(my_dict.keys())
小于或等于符号 <=
检查集合对象是否是字典键视图的子集。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
if {'name', 'country'} <= my_dict.keys():
# 👇️ this runs
print('multiple keys are in the dictionary')
使用 <=
的替代方法是使用 set.issubset()
方法。
my_dict = {
'name': 'Alice',
'country': 'Austria',
'age': 30
}
if {'name', 'country'}.issubset(my_dict.keys()):
# 👇️ this runs
print('multiple keys are in the dictionary')
set.issubset
方法测试集合中的每个元素是否都在提供的序列中。
相关文章
在 C 语言中实现字典
发布时间:2023/05/07 浏览次数:196 分类:C语言
-
本文介绍了如何在 C 语言中实现字典。使用 hcreate、hsearch 和 hdestroy 在 C 语言中实现字典功能
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。