📜  python 排序 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:09.744000             🧑  作者: Mango

代码示例1
>>> student_tuples = [
...     ('john', 'A', 15),
...     ('jane', 'B', 12),
...     ('dave', 'B', 10),
... ]
>>> sorted(student_tuples, key=lambda student: student[2])   # sort by age
[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]