Python字典的cmp 函数是什么?cmp 函数的作用是什么?
程序员文章站
2022-04-23 16:37:32
...
今天这篇文章中我们来了解一下python字典之中的内置函数,在这文章之中我会python中的cmp是什么进行说明,以及pythoncmp()方法进行解析。好了废话不多说,我们开始进入文章吧。
描述
Python 字典的 cmp() 函数用于比较两个字典元素。
语法
cmp()方法语法:
cmp(dict1, dict2)
参数
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
以上就是这篇文章所讲的全部内容,python字内置函数cmp方法。希望所说的内容以及所举的例子能对你有所帮助。
更多相关知识,请访问Python教程栏目。
以上就是Python字典的cmp 函数是什么?cmp 函数的作用是什么?的详细内容,更多请关注其它相关文章!
推荐阅读
-
块级作用域内的函数声明到底是什么???
-
python fromkeys函数是什么?fromkeys函数的作用是什么?
-
Python的内建比较函数cmp比较原理剖析
-
python中的any函数是什么?如何使用any函数?
-
python fromkeys函数是什么?fromkeys函数的作用是什么?
-
ThinkPHP中的L()函数,主要作用是什么感觉一般很少用到??
-
typecho皮肤函数 - typecho 中author.php的作用是什么?
-
typecho皮肤函数 - typecho 中author.php的作用是什么?
-
ini_set、putenv等函数的作用范围是什么呢,大局还是只限于本网站
-
python正则表达式之中的findall函数是什么?