Python sorted函数详解(高级篇)


Posted in Python onSeptember 18, 2018

sorted 用于对集合进行排序(这里集合是对可迭代对象的一个统称,他们可以是列表、字典、set、甚至是字符串),它的功能非常强大

1、对列表排序,返回的对象不会改变原列表

list = [1,5,7,2,4]

sorted(list)
Out[87]: [1, 2, 4, 5, 7]
#可以设定时候排序方式,默认从小到大,设定reverse = False 可以从大到小
sorted(list,reverse=False)
Out[88]: [1, 2, 4, 5, 7]

sorted(list,reverse=True)
Out[89]: [7, 5, 4, 2, 1]

2、根据自定义规则来排序,使用参数:key

# 使用key,默认搭配lambda函数使用
sorted(chars,key=lambda x:len(x))
Out[92]: ['a', 'is', 'boy', 'bruce', 'handsome']

sorted(chars,key=lambda x:len(x),reverse= True)
Out[93]: ['handsome', 'bruce', 'boy', 'is', 'a']

3、根据自定义规则来排序,对元组构成的列表进行排序

tuple_list = [('A', 1,5), ('B', 3,2), ('C', 2,6)]
#key=lambda x: x[1]中可以任意选定x中可选的位置进行排序
sorted(tuple_list, key=lambda x: x[1]) 

Out[94]: [('A', 1, 5), ('C', 2, 6), ('B', 3, 2)]

sorted(tuple_list, key=lambda x: x[0])
Out[95]: [('A', 1, 5), ('B', 3, 2), ('C', 2, 6)]

sorted(tuple_list, key=lambda x: x[2])
Out[96]: [('B', 3, 2), ('A', 1, 5), ('C', 2, 6)]

4、排序的元素是自定义类

class tuple_list:
 def __init__(self, one, two, three):
  self.one = one
  self.two = two
  self.three = three
 def __repr__(self):
  return repr((self.one, self.two, self.three))


tuple_list_ = [tuple_list('A', 1,5), tuple_list('B', 3,2), tuple_list('C', 2,6)]

sorted(tuple_list_, key=lambda x: x.one)
Out[104]: [('A', 1, 5), ('B', 3, 2), ('C', 2, 6)]

sorted(tuple_list_, key=lambda x: x.two)
Out[105]: [('A', 1, 5), ('C', 2, 6), ('B', 3, 2)]

sorted(tuple_list_, key=lambda x: x.three)
Out[106]: [('B', 3, 2), ('A', 1, 5), ('C', 2, 6)]

5、sorted 也可以根据多个字段来排序

class tuple_list:
 def __init__(self, one, two, three):
  self.one = one
  self.two = two
  self.three = three
 def __repr__(self):
  return repr((self.one, self.two, self.three))

tuple_list_ = [tuple_list('C', 1,5), tuple_list('A', 3,2), tuple_list('C', 2,6)]
# 首先根据one的位置来排序,然后根据two的位置来排序
sorted(tuple_list_, key=lambda x:(x.one, x.two))
Out[112]: [('A', 3, 2), ('C', 1, 5), ('C', 2, 6)]

6、使用operator 中的itemgetter方法和attrgetter方法

tuple_list = [('A', 1,5), ('B', 3,2), ('C', 2,6)]

class tuple_list_class:
 def __init__(self, one, two, three):
  self.one = one
  self.two = two
  self.three = three
 def __repr__(self):
  return repr((self.one, self.two, self.three))

tuple_list_ = [tuple_list_class('C', 1,5), tuple_list_class('A', 3,2), tuple_list_class('C', 2,6)]

from operator import itemgetter
sorted(tuple_list, key=itemgetter(1))

Out[119]: [('A', 1, 5), ('C', 2, 6), ('B', 3, 2)]

from operator import attrgetter
sorted(tuple_list_, key=attrgetter('one')) # attrgetter 传入的参数必须是str

Out[120]: [('A', 3, 2), ('C', 1, 5), ('C', 2, 6)]

# 如果是根据多个类的参数排序,按照参数定义顺序
from operator import attrgetter
sorted(tuple_list_, key=attrgetter('two','one'))

Out[121]: [('C', 1, 5), ('C', 2, 6), ('A', 3, 2)]

高级用法

有时候,我们要处理的数据内的元素不是一维的,而是二维的甚至是多维的,那要怎么进行排序呢?这时候,sorted()函数内的key参数就派上用场了!从帮助信息上可以了解到,key参数可传入一个自定义函数。那么,该如何使用呢?让我们看看如下代码:

>>>l=[('a', 1), ('b', 2), ('c', 6), ('d', 4), ('e', 3)]
>>>sorted(l, key=lambda x:x[0])
Out[39]: [('a', 1), ('b', 2), ('c', 6), ('d', 4), ('e', 3)]
>>>sorted(l, key=lambda x:x[0], reverse=True)
Out[40]: [('e', 3), ('d', 4), ('c', 6), ('b', 2), ('a', 1)]
>>>sorted(l, key=lambda x:x[1])
Out[41]: [('a', 1), ('b', 2), ('e', 3), ('d', 4), ('c', 6)]
>>>sorted(l, key=lambda x:x[1], reverse=True)
Out[42]: [('c', 6), ('d', 4), ('e', 3), ('b', 2), ('a', 1)]

这里,列表里面的每一个元素都为二维元组,key参数传入了一个lambda函数表达式,其x就代表列表里的每一个元素,然后分别利用索引返回元素内的第一个和第二个元素,这就代表了sorted()函数利用哪一个元素进行排列。而reverse参数就如同上面讲的一样,起到逆排的作用。默认情况下,reverse参数为False。
当然,正如一开始讲到的那样,如果想要对列表直接进行排序操作,可以用成员方法sort()来做:

>>>l.sort(key=lambda x : x[1])
>>>l
Out[45]: [('a', 1), ('b', 2), ('e', 3), ('d', 4), ('c', 6)]
>>>l.sort(key=lambda x : x[1], reverse=True)
>>>l
Out[47]: [('c', 6), ('d', 4), ('e', 3), ('b', 2), ('a', 1)]

对于三维及以上的数据排排序,上述方法同样适用。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对三水点靠木的支持。如果你想了解更多相关内容请查看下面相关链接

Python 相关文章推荐
python控制台英汉汉英电子词典
Apr 23 Python
Python中的rjust()方法使用详解
May 19 Python
Python使用Beautiful Soup包编写爬虫时的一些关键点
Jan 20 Python
python基于itchat实现微信群消息同步机器人
Feb 27 Python
Django跨域请求CSRF的方法示例
Nov 11 Python
python 自动轨迹绘制的实例代码
Jul 05 Python
win10下安装Anaconda的教程(python环境+jupyter_notebook)
Oct 23 Python
Windows下Anaconda安装、换源与更新的方法
Apr 17 Python
Python参数传递机制传值和传引用原理详解
May 22 Python
Selenium自动化测试工具使用方法汇总
Jun 12 Python
浅谈python锁与死锁问题
Aug 14 Python
Python爬虫破解登陆哔哩哔哩的方法
Nov 17 Python
python 2.7.13 安装配置方法图文教程
Sep 18 #Python
Python DataFrame.groupby()聚合函数,分组级运算
Sep 18 #Python
python 3.6.2 安装配置方法图文教程
Sep 18 #Python
Python对CSV、Excel、txt、dat文件的处理
Sep 18 #Python
python 3.6.4 安装配置方法图文教程
Sep 18 #Python
python 3.6.5 安装配置方法图文教程
Sep 18 #Python
python的pip安装以及使用教程
Sep 18 #Python
You might like
PHP explode()函数用法、切分字符串
2012/10/03 PHP
Yii使用CLinkPager分页实例详解
2014/07/23 PHP
Symfony控制层深入详解
2016/03/17 PHP
Yii框架分页实现方法详解
2017/05/20 PHP
Discuz不使用插件实现简单的打赏功能
2019/03/21 PHP
浅谈PHP array_search 和 in_array 函数效率问题
2019/10/15 PHP
五个jQuery图片画廊插件 推荐
2011/05/12 Javascript
SharePoint 客户端对象模型 (一) ECMA Script
2011/05/22 Javascript
Select标签下拉列表二级联动级联实例代码
2014/02/07 Javascript
jquery的each方法使用示例分享
2014/03/25 Javascript
对jquery的ajax进行二次封装以及ajax缓存代理组件:AjaxCache详解
2016/04/11 Javascript
BootStrap中Tab页签切换实例代码
2016/05/30 Javascript
使用Ajax生成的Excel文件并下载的实例
2016/11/21 Javascript
JavaScript用构造函数如何获取变量的类型名
2016/12/23 Javascript
JS排序之快速排序详解
2017/04/08 Javascript
老生常谈combobox和combotree模糊查询
2017/04/17 Javascript
深入理解基于vue-cli的vuex配置
2017/07/24 Javascript
vue采用EventBus实现跨组件通信及注意事项小结
2018/06/14 Javascript
Webpack4+Babel7+ES6兼容IE8的实现
2019/04/10 Javascript
关于layui表单中按钮自动提交的解决方法
2019/09/09 Javascript
[01:07:34]DOTA2-DPC中国联赛定级赛 RNG vs Aster BO3第二场 1月9日
2021/03/11 DOTA
一个计算身份证号码校验位的Python小程序
2014/08/15 Python
Python实现栈的方法
2015/05/26 Python
浅谈Python 列表字典赋值的陷阱
2019/01/20 Python
利用pyecharts实现地图可视化的例子
2019/08/12 Python
python实现对服务器脚本敏感信息的加密解密功能
2019/08/13 Python
numpy实现神经网络反向传播算法的步骤
2019/12/24 Python
浅谈对pytroch中torch.autograd.backward的思考
2019/12/27 Python
Python3 mmap内存映射文件示例解析
2020/03/23 Python
详解Pandas 处理缺失值指令大全
2020/07/30 Python
python爬虫beautifulsoup解析html方法
2020/12/07 Python
Daniel Wellington官方海外旗舰店:丹尼尔惠灵顿DW手表
2018/02/22 全球购物
营销专业应届生求职信
2013/11/26 职场文书
学生处主任岗位职责
2013/12/01 职场文书
十佳青年事迹材料
2014/08/21 职场文书
个人维稳承诺书
2015/05/04 职场文书