python dic字典排序
2021-02-05 18:15
标签:center style 字典 eve sorted font 读书 pre lambda 使用lambda匿名函数来实现。 这个用的比较多,先记录一下。写给自己看。 读书和健身总有一个在路上 python dic字典排序 标签:center style 字典 eve sorted font 读书 pre lambda 原文地址:https://www.cnblogs.com/Renqy/p/12786603.html>>> dic1 = {‘a‘:1,‘b‘:2,‘e‘:5,‘d‘:4,‘c‘:3}
>>> result = sorted(dic1.items(), key = lambda x :(x[1]))
>>> result
[(‘a‘, 1), (‘b‘, 2), (‘c‘, 3), (‘d‘, 4), (‘e‘, 5)]
>>> result = sorted(dic1.items(), key = lambda x :(-x[1]))
>>> result
[(‘e‘, 5), (‘d‘, 4), (‘c‘, 3), (‘b‘, 2), (‘a‘, 1)]
>>> dic1
{‘a‘: 1, ‘b‘: 2, ‘e‘: 5, ‘d‘: 4, ‘c‘: 3}
>>> result = sorted(dic1.items(), key = lambda x :(x[0]))
>>> result
[(‘a‘, 1), (‘b‘, 2), (‘c‘, 3), (‘d‘, 4), (‘e‘, 5)]
>>> result = sorted(dic1.items(), key = lambda x :(x[0]),reverse = True)
>>> result
[(‘e‘, 5), (‘d‘, 4), (‘c‘, 3), (‘b‘, 2), (‘a‘, 1)]
#x[0] 用字典的第一位排序
#x[1] 用字典的第二位排序
#-x[0] 用第一位的负数排序
默认是升序
reverse = True 降序
下一篇:Python——并发编程02