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

python list 嵌套 dict 按照字典中的单个key进行单级排序 或 按照多个键进行多级排序

时间:2018-06-02 11:18:16      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:key   pre   lam   span   嵌套   python   lis   sort   item   

student = [{"no": 1,"score": 90},{"no": 2,"score": 90},{"no": 3,"score": 88},{"no": 4,"score": 92}]

# 单级排序,仅按照score排序
student_sort_1 = sorted(student, key=lambda e: e.__getitem__(score))

# 多级排序,先按照score,再按照no排序
student_sort_2 = sorted(student, key=lambda e:(e.__getitem__(score), e.__getitem__(no)))

 

python list 嵌套 dict 按照字典中的单个key进行单级排序 或 按照多个键进行多级排序

标签:key   pre   lam   span   嵌套   python   lis   sort   item   

原文地址:https://www.cnblogs.com/lowmanisbusy/p/9124229.html

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