晴川云Python教程:python 如何判断两个字典是否相等

python 字典的 cmp() 函数用于比较两个字典元素。

python学习网,大量的免费python视频教程,欢迎在线学习!

语法

cmp()方法语法:

cmp(dict1, dict2)

相关推荐:《Python教程》

参数

dict1 — 比较的字典。

dict2 — 比较的字典。

返回值

如果两个字典的元素相同返回0,如果字典dict1大于字典dict2返回1,如果字典dict1小于字典dict2返回-1。

实例

以下实例展示了 cmp()函数的使用方法:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
dict1 = {'Name': 'Zara', 'Age': 7};
dict2 = {'Name': 'Mahnaz', 'Age': 27};
dict3 = {'Name': 'Abid', 'Age': 27};
dict4 = {'Name': 'Zara', 'Age': 7};
print "Return Value : %d" %  cmp (dict1, dict2)
print "Return Value : %d" %  cmp (dict2, dict3)
print "Return Value : %d" %  cmp (dict1, dict4)

以上实例输出结果为:

Return Value : -1
Return Value : 1
Return Value : 0

原创文章,作者:晴川运维,如若转载,请注明出处:https://baike.qcidc.com/8305.html

(0)
晴川运维晴川运维
上一篇 2025年6月11日
下一篇 2025年6月11日

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注