码迷,mamicode.com
首页 > 编程语言 > 详细

列表排序

时间:2018-09-17 19:50:29      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:https   tar   lan   .com   原来   div   tps   target   www   

列表排序

https://www.cnblogs.com/whaben/p/6495702.html

1、简单的升序排序是非常容易的。只需要调用sorted()方法。它返回一个新的list,新的list的元素基于小于运算符(__lt__)来排序。

>>> sorted([5, 2, 3, 1, 4])
[1, 2, 3, 4, 5]

  

2、你也可以使用list.sort()方法来排序,此时list本身将被修改。通常此方法不如sorted()方便,但是如果你不需要保留原来的list,此方法将更有效。

>>> a = [5, 2, 3, 1, 4]
>>> a.sort()
>>> a
[1, 2, 3, 4, 5]

  

列表排序

标签:https   tar   lan   .com   原来   div   tps   target   www   

原文地址:https://www.cnblogs.com/andy9468/p/9663484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!