比较 Python 中的两个字典
本文将介绍如何在 Python 中比较两个字典。
在 Python 中使用 ==
运算符比较两个字典
Python 中的 ==
运算符可用于确定字典是否相同。
这是存在相同字典时的示例。
dict1 = dict(name="Tom", Vehicle="Benz Car")
dict2 = dict(name="Tom", Vehicle="Benz Car")
dict1 == dict2
输出:
True
这是一个例子,当有不同的字典时 -
dict1 = dict(name="John", Vehicle="Benz Car")
dict2 = dict(name="Tom", Vehicle="Benz Car")
dict1 == dict2
输出:
False
你可以比较以下示例中提到的许多字典,
dict1 = dict(name="John", Vehicle="Benz Car")
dict2 = dict(name="Tom", Vehicle="Benz Car")
dict3 = dict(name="Shona", Vehicle="Alto Car")
dict4 = dict(name="Ruby", Vehicle="Honda Car")
dict1 == dict2 == dict3 == dict4
输出:
False
编写自定义代码来比较 Python 中的两个字典
以下是如何编写代码来比较字典并确定字典之间共有多少对。下面是步骤。
-
使用
for
循环遍历其中一个字典中的每个项目。根据共享索引将此字典的每个项目与另一个字典进行比较。 -
如果项目相等,则将
key:value
对放入结果共享字典中。 -
遍历整个字典后,计算结果共享字典的长度以确定字典之间的公共项数。
下面是一个示例,演示了在 Python 中比较两个字典的方法。
在这种情况下,字典是相同的。
dict1 = dict(name="Tom", Vehicle="Mercedes Car")
dict2 = dict(name="Tom", Vehicle="Mercedes Car")
dict1_len = len(dict1)
dict2_len = len(dict2)
total_dict_count = dict1_len + dict2_len
shared_dict = {}
for i in dict1:
if (i in dict2) and (dict1[i] == dict2[i]):
shared_dict[i] = dict1[i]
len_shared_dict = len(shared_dict)
print("The items common between the dictionaries are -", shared_dict)
print("The number of items common between the dictionaries are -", len_shared_dict)
if len_shared_dict == total_dict_count / 2:
print("The dictionaries are identical")
else:
print("The dictionaries are non-identical")
输出:
The items common between the dictionaries are - {'name': 'Tom', 'Vehicle': 'Mercedes Car'}
The number of items common between the dictionaries are - 2
The dictionaries are identical
接下来,让我们尝试一个字典不相同的例子——
dict1 = dict(name="Tom", Vehicle="Alto Car")
dict2 = dict(name="Tom", Vehicle="Mercedes Car")
dict1_len = len(dict1)
dict2_len = len(dict2)
total_dict_count = dict1_len + dict2_len
shared_dict = {}
for i in dict1:
if (i in dict2) and (dict1[i] == dict2[i]):
shared_dict[i] = dict1[i]
len_shared_dict = len(shared_dict)
print("The items common between the dictionaries are -", shared_dict)
print("The number of items common between the dictionaries are -", len_shared_dict)
if len_shared_dict == total_dict_count / 2:
print("The dictionaries are identical")
else:
print("The dictionaries are non-identical")
输出:
The items common between the dictionaries are - {'name': 'Tom'}
The number of items common between the dictionaries are - 1
The dictionaries are non-identical
相关文章
使用 Python 将文件从一个目录移动到另一个目录
发布时间:2023/12/23 浏览次数:194 分类:Python
-
本教程演示了如何使用 python 将文件从一个目录移动到另一个目录。将文件从一个目录移动到另一个目录可能听起来没什么大不了的,但有时,它对操作文件有很大帮助。
在 Python 字典中寻找最大值
发布时间:2023/12/23 浏览次数:103 分类:Python
-
本教程介绍了如何在 Python 中获取字典中具有最大值的键。本教程介绍了如何在 Python 中获取一个具有最大值的键。由于该方法与以前的 Python 版本相比已经发生了变化,因此它还列出了一些示例
如何在 Python 中读取 stdin 中的输入内容
发布时间:2023/12/23 浏览次数:110 分类:Python
-
本文介绍了在 Python 中读取 stdin 输入的方法。本教程讨论了在 Python 中从 stdin 读取输入的方法。可以直接从控制台读取,也可以从控制台中指定的文件名读取。
如何在 Python 中等待用户输入
发布时间:2023/12/23 浏览次数:139 分类:Python
-
本文演示了如何在 Python 中等待用户按下一个键。本教程向你展示了如何在 Python 中等待按键后再进行其他操作。在 Python 中使用 input() 等待输入
在 Python 中模拟键盘输入
发布时间:2023/12/23 浏览次数:55 分类:Python
-
了解如何在 Python 中模拟键盘输入。Python 几乎可以用于任何事情。使用 Python,我们可以开发 Web 应用程序的后端
在 Python 中检测键击
发布时间:2023/12/23 浏览次数:141 分类:Python
-
本教程提供了一个如何在 Python 中检测键击的演示。如果你需要访问键盘等输入设备等硬件,Python 中的一些模块可以让你的生活变得更加轻松。使用这样的模块,你可以轻松地执行你想要的任务
Python 中比较两个日期
发布时间:2023/12/22 浏览次数:166 分类:Python
-
本教程演示了 Python 中如何比较两个日期并检查哪个日期更大。本教程解释了如何在 Python 中比较两个日期。它有多种方法来确定哪个日期更大,所以教程还列出了不同的示例代码来阐述不同的
在 Python 中重新加载或取消导入模块
发布时间:2023/12/22 浏览次数:102 分类:Python
-
本教程演示了如何在 Python 中重新加载模块。模块允许我们在 Python 文件中存储不同函数和类的定义,然后这些文件可以在其他文件中使用。
在 Python 中暂停程序执行
发布时间:2023/12/22 浏览次数:190 分类:Python
-
本教程介绍了如何在 Python 中暂停程序。本教程将演示 Python 中暂停程序的各种方法。暂停程序的执行或应用在不同的场景下使用,比如当一个程序需要输入用户时。