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

Posted lowmanisbusy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python list 嵌套 dict 按照字典中的单个key进行单级排序 或 按照多个键进行多级排序相关的知识,希望对你有一定的参考价值。

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进行单级排序 或 按照多个键进行多级排序的主要内容,如果未能解决你的问题,请参考以下文章

Python 按照 list 中的字典的某个 key 排序

Python字典的初识增删改查及嵌套

将默认dict更改为嵌套字典

python字典无限遍历

python基础之字典dict

Python(set/list/dict/tuple)