码迷,mamicode.com
首页 > 编程语言 > 详细

python dic字典排序

时间:2020-04-27 15:15:10      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:center   style   字典   eve   sorted   font   读书   pre   lambda   

使用lambda匿名函数来实现。

>>> 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 dic字典排序

标签:center   style   字典   eve   sorted   font   读书   pre   lambda   

原文地址:https://www.cnblogs.com/Renqy/p/12786603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!