Python 字典 Dictionary cmp()方法
Python 字典 Dictionary cmp()方法
Python 字典的 cmp() 函數(shù)用于比較兩個(gè)字典元素。
語法
cmp()方法語法:
cmp(dict1, dict2)
參數(shù)
- dict1 -- 比較的字典。
- dict2 -- 比較的字典。
返回值
如果兩個(gè)字典的元素相同返回0,如果字典dict1大于字典dict2返回1,如果字典dict1小于字典dict2返回-1。
實(shí)例
以下實(shí)例展示了 cmp()函數(shù)的使用方法:
實(shí)例(Python 2.0+)
#!/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)
以上實(shí)例輸出結(jié)果為:
Return Value : -1 Return Value : 1 Return Value : 0
相關(guān)文章
- Python 字符串
- Python 模塊
- Python SMTP發(fā)送郵件
- Python2 與 Python3?? 版本區(qū)別
- Python 高級鏈表
- Python 攤銷分析
- Python3 教程
- Python sqrt() 函數(shù)
- Python os.fsync() 方法
- Python os.lchown() 方法
- Python os.open() 方法
- Python os.readlink() 方法
- Python os.statvfs() 方法
- Python os.ttyname() 方法
- Python os.walk() 方法
- Python isupper()方法
- Python List len()方法
- Python 字典 Dictionary fromkeys()方法
- Python 字典 Dictionary setdefault()方法
- Python time clock()方法