python

sorted在python中如何使用

小亿
84
2024-01-22 16:02:08
栏目: 编程语言

在Python中,可以使用sorted()函数来对列表、元组、字典等可迭代对象进行排序。

语法: sorted(iterable, key=None, reverse=False)

参数说明:

示例:

  1. 对列表进行排序:
numbers = [5, 2, 8, 3, 1]
sorted_numbers = sorted(numbers)
print(sorted_numbers)  # 输出:[1, 2, 3, 5, 8]
  1. 对元组进行排序:
fruits = ("apple", "banana", "cherry")
sorted_fruits = sorted(fruits)
print(sorted_fruits)  # 输出:['apple', 'banana', 'cherry']
  1. 对字典进行排序:
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,表示按照降序排序。

0
看了该问题的人还看了