今天這篇文章中我們來了解一下python字典之中的內建函數,在這文章之中我會python中的cmp是什麼進行說明,以及pythoncmp()方法進行解析。好了廢話不多說,我們開始進入文章吧。
描述
Python 字典的 cmp() 函數用來比較兩個字典元素。
語法
cmp()方法語法:
cmp(dict1, dict2)
參數
回傳值
如果兩個字典的元素相同回傳0,如果字典dict1大於字典dict2回傳1,如果字典dict1小於字典dict2回傳-1。實例
# !/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教學欄位。
以上是Python字典的cmp 函數是什麼? cmp 函數的作用是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!