python sort() sorted()函数

Posted Aaron12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python sort() sorted()函数相关的知识,希望对你有一定的参考价值。

sort表示排序

sorted表示在原基础上创建副本排序

默认是从小到大排序

sorted(iterable, cmp=None, key=None, reverse=True)

 

# -*- coding: utf-8 -*-
from numpy import *
import operator

student_tuples = [(Jerry, C, 15), (Tom, B, 12),(Bill, B, 10)]
age_asc = sorted(student_tuples, key=operator.itemgetter(2))
print (age_asc)
score_desc = sorted(age_asc, key=operator.itemgetter(1), reverse=True)
print (score_desc)

 

结果如下:

[(Bill, B, 10), (Tom, B, 12), (Jerry, C, 15)]
[(Jerry, C, 15), (Bill, B, 10), (Tom, B, 12)]
其中key=operator.itemgetter(1)表示从第几个元素排序

 

以上是关于python sort() sorted()函数的主要内容,如果未能解决你的问题,请参考以下文章

python函数之sorted与sort

python sort() sorted()函数

Python中sort以及sorted函数初探

Python3:排序函数sort() 和 sorted() 之介绍

python排序函数sort()与sorted()区别

python3----函数(sort和sorted)