标签:
1.根据key排序,正向排序
1 sorted(dic.items(), key=lambda d: d[0])
2.根据value排序,反向排序
sorted(dic.items(), key=lambda d: d[1],reverse=True)
3.排序后对原来dictionay没有改变,如果要使用排序后字典,则需将排序后字典赋值给新的变量
dic=[(‘456‘, 90), (‘123‘, 78), (‘78‘, 10)] newdic=sorted(dic.items(), key=lambda d: d[1],reverse=True) print newdic [(‘456‘, 90), (‘123‘, 78), (‘78‘, 10)] print dic {‘123‘: 78, ‘456‘: 90, ‘78‘: 10}
标签:
原文地址:http://www.cnblogs.com/alicia-Programming/p/4513232.html