在Python中,可以使用sorted()函数来对列表、元组、字典等可迭代对象进行排序。
语法: sorted(iterable, key=None, reverse=False)
参数说明:
示例:
numbers = [5, 2, 8, 3, 1]
sorted_numbers = sorted(numbers)
print(sorted_numbers) # 输出:[1, 2, 3, 5, 8]
fruits = ("apple", "banana", "cherry")
sorted_fruits = sorted(fruits)
print(sorted_fruits) # 输出:['apple', 'banana', 'cherry']
scores = {"Alice": 85, "Bob": 92, "Charlie": 78}
sorted_scores = sorted(scores.items(), key=lambda x: x[1], reverse=True)
print(sorted_scores) # 输出:[('Bob', 92), ('Alice', 85), ('Charlie', 78)]
在上面的示例中,使用了lambda表达式作为key参数,根据字典的值进行排序。reverse参数设置为True,表示按照降序排序。