翼度科技»论坛 编程开发 python 查看内容

python内置函数——sorted

2

主题

2

帖子

6

积分

新手上路

Rank: 1

积分
6
对List、Dict进行排序,Python提供了两个方法
对给定的List L进行排序,
方法1.用List的成员函数sort进行排序,在本地进行排序,不返回副本
方法2.用built-in函数sorted进行排序(从2.4开始),返回副本,原始输入不变
  1. --------------------------------sorted---------------------------------------
  2. sorted(iterable, key=None, reverse=False)
  3. Return a new list containing all items from the iterable in ascending order.
  4. A custom key function can be supplied to customise the sort order, and the
  5. reverse flag can be set to request the result in descending order.
  6. -----------------------------------------------------------------------------
复制代码
参数说明:

  • iterable:是可迭代类型;
  • key:传入一个函数名,函数的参数是可迭代类型中的每一项,根据函数的返回值大小排序;
  • reverse:排序规则. reverse = True  降序 或者 reverse = False 升序,有默认值。
  • 返回值:有序列表
例:
列表按照其中每一个值的绝对值排序
  1. l1 = [1,3,5,-2,-4,-6]
  2. l2 = sorted(l1,key=abs)
  3. #Python学习交流群:153708845
  4. print(l1)
  5. print(l2)
复制代码
列表按照每一个元素的len排序
  1. l = [[1,2],[3,4,5,6],(7,),'123']
  2. print(sorted(l,key=len))
复制代码
来源:https://www.cnblogs.com/xxpythonxx/p/18233309
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具