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

python中列表排序,字典排序,列表中的字典排序

时间:2020-09-14 18:53:23      阅读:26      评论:0      收藏:0      [点我收藏+]

标签:reverse   iter   blog   常用   font   key   列表   imp   sort   

import operator  
一. 按字典值排序(默认为升序)  
x = {1:2, 3:4, 4:3, 2:1, 0:0}   
1. sorted_x = sorted(x.iteritems(), key=operator.itemgetter(1))  
print sorted_x  
#[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]  
#如果要降序排序,可以指定reverse=True  
2. sorted_x = sorted(x.iteritems(), key=operator.itemgetter(1), reverse=True)  
print sorted_x  
#[(3, 4), (4, 3), (1, 2), (2, 1), (0, 0)]  
二. 或者直接使用list的reverse方法将sorted_x顺序反转  
#sorted_x.reverse()  
  
三. 更为常用的方法是,用lambda表达式  
3. sorted_x = sorted(x.iteritems(), key=lambda x : x[1])  
print sorted_x  
#[(0, 0), (2, 1), (1, 2), (4, 3), (3, 4)]  
4. sorted_x = sorted(x.iteritems(), key=lambda x : x[1], reverse=True)  
print sorted_x  
#[(3, 4), (4, 3), (1, 2), (2, 1), (0, 0)]  
  
四. 包含字典dict的列表list的排序方法与dict的排序类似,如下:  
x = [{‘name‘:‘Homer‘, ‘age‘:39}, {‘name‘:‘Bart‘, ‘age‘:10}]  
sorted_x = sorted(x, key=operator.itemgetter(‘name‘))  
print sorted_x  
#[{‘age‘: 10, ‘name‘: ‘Bart‘}, {‘age‘: 39, ‘name‘: ‘Homer‘}]  
sorted_x = sorted(x, key=operator.itemgetter(‘name‘), reverse=True)  
print sorted_x  
#[{‘age‘: 39, ‘name‘: ‘Homer‘}, {‘age‘: 10, ‘name‘: ‘Bart‘}]  
sorted_x = sorted(x, key=lambda x : x[‘name‘])  
print sorted_x  
#[{‘age‘: 10, ‘name‘: ‘Bart‘}, {‘age‘: 39, ‘name‘: ‘Homer‘}]  
5. sorted_x = sorted(x, key=lambda x : x[‘name‘], reverse=True)  
print sorted_x  
#[{‘age‘: 39, ‘name‘: ‘Homer‘}, {‘age‘: 10, ‘name‘: ‘Bart‘}] 
引用:https://www.cnblogs.com/onemorepoint/p/9114153.html

python中列表排序,字典排序,列表中的字典排序

标签:reverse   iter   blog   常用   font   key   列表   imp   sort   

原文地址:https://www.cnblogs.com/xiao-longxia/p/13595330.html

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