位置:首頁 > 腳本語言 > Python教學 > Python dict.cmp()方法

Python dict.cmp()方法

cmp()方法比較兩個詞典鍵和值。

語法

以下是cmp()方法的語法:

cmp(dict1, dict2)

參數

  • dict1 -- 這是與dict2進行比較的第一個字典

  • dict2 -- 這是與dict1進行比較的第二個字典

返回值

此方法返回0,如果兩個字典是平等的,如果dict1<dict2返回-1,如果dict1> dic2返回1

例子

下麵的例子顯示了cmp()方法的使用

#!/usr/bin/python

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