python使用sorted函数对列表进行排序 python列表排序方法sorted

主机教程 建站分享 2年前 (2022-11-27) 192次浏览

文章摘要:python使用sorted函数对列表进行排序 python列表排序方法sorted

在python中使用sorted函数对列表进行排序的方法 sorted:sorted()函数的作用是对所有可迭 […]

在python中使用sorted函数对列表进行排序的方法

sorted:sorted()函数的作用是对所有可迭代的对象进行排序操作。

sorted()函数语法:

sorted(iterable, key=None, reverse=False)

sorted()函数使用方法:

#创建一个数字组成的列表

numbers = [5, 1, 4, 3, 2, 6, 7, 9]

#输出排序后的数字数组

print sorted(numbers)

#输出原始数组,并未被改变

print numbers

my_string = ['aa', 'BB', 'zz', 'CC', 'dd', "EE"]

#按字符顺序对字符串列表进行排序,默认为按字符顺序排序

print sorted(my_string)

#使用reverse=True按照首字符的倒序进行排序

print sorted(strs, reverse=True)

## ['zz', 'aa', 'CC', 'BB']


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python使用sorted函数对列表进行排序 python列表排序方法sorted
文章链接:http://www.7966.org/post/13356.html
转载请注明出处

喜欢 (0)