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

Ora ·
更新时间:2024-11-10
· 770 次阅读

本文实例讲述了python使用sorted函数对列表进行排序的方法。分享给大家供大家参考。具体如下:

python提供了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程序设计有所帮助。

您可能感兴趣的文章:Python 列表排序方法reverse、sort、sorted详解基于python list对象中嵌套元组使用sort时的排序方法Python实现二维数组按照某行或列排序的方法【numpy lexsort】Python中的sort()方法使用基础教程python中的sort方法使用详解python sorted方法和列表使用解析



sorted 列表 方法 排序 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号