一、Python排序函数简介
排序(sorting)是计算机程序中常用的操作,它把一系列对象按照特定的规则进行排列。在Python中,排序可以使用内置函数sorted()和sort(),本文将详细介绍这两个函数的用法。
二、Python内置函数sorted()
sorted()是Python内置的排序函数,它可以对列表、元组和其他可迭代对象进行排序。
1. 对列表进行排序
使用sorted()对列表进行排序时,可以指定是否进行逆序排序、排序方法和排序关键字。
# 对列表进行升序排序 my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5] sorted_list = sorted(my_list) print(sorted_list) # [1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9] # 对列表进行降序排序 my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5] sorted_list = sorted(my_list, reverse=True) print(sorted_list) # [9, 6, 5, 5, 5, 4, 3, 3, 2, 1, 1] # 按照绝对值进行排序 my_list = [-3, 1, -4, 1, 5, 9, 2, -6, 5, 3, -5] sorted_list = sorted(my_list, key=abs) print(sorted_list) # [1, 1, 2, 3, -3, -4, 5, -5, 5, -6, 9]
2. 对元组进行排序
使用sorted()对元组进行排序时,返回的是列表而不是元组。
# 对元组进行升序排序 my_tuple = (3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5) sorted_list = sorted(my_tuple) print(sorted_list) # [1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9] # 对元组进行降序排序 my_tuple = (3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5) sorted_list = sorted(my_tuple, reverse=True) print(sorted_list) # [9, 6, 5, 5, 5, 4, 3, 3, 2, 1, 1] # 按照元素长度进行排序 my_tuple = ('abc', 'a', 'bcde', 'f', 'gh') sorted_list = sorted(my_tuple, key=len) print(sorted_list) # ['a', 'f', 'gh', 'abc', 'bcde']
三、Python列表方法sort()
sort()是Python中的列表方法,只能用于列表排序。它与sorted()类似,可以进行升序排序、降序排序、自定义排序方法和排序关键字。
1. 对列表进行排序
# 对列表进行升序排序 my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5] my_list.sort() print(my_list) # [1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9] # 对列表进行降序排序 my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5] my_list.sort(reverse=True) print(my_list) # [9, 6, 5, 5, 5, 4, 3, 3, 2, 1, 1] # 按照字符串长度进行排序 my_list = ['abc', 'a', 'bcde', 'f', 'gh'] my_list.sort(key=len) print(my_list) # ['a', 'f', 'gh', 'abc', 'bcde']
2. 自定义排序方法
可以使用函数作为排序方法,用sorted()和sort()的key参数传递。
# 按照每个元素的最后一个字符进行排序 def mysort(string): return string[-1] my_list = ['abc', 'bcd', 'efg', 'opq', 'xyz'] my_list = sorted(my_list, key=mysort) print(my_list) # ['abc', 'opq', 'bcd', 'efg', 'xyz'] my_list = ['abc', 'bcd', 'efg', 'opq', 'xyz'] my_list.sort(key=mysort) print(my_list) # ['abc', 'opq', 'bcd', 'efg', 'xyz']
总结
本文介绍了Python内置函数sorted()和列表方法sort()的用法,可以用于列表、元组和其他可迭代对象的排序。在使用时,可以指定排序顺序、排序方法和排序关键字等参数。