python中sorted的用法, 根本概念
Python中sorted()函数的深化解析
在Python编程中,排序是数据处理中非常常见的一个操作。`sorted()`函数是Python供给的一个内置函数,用于对可迭代目标进行排序。本文将具体介绍`sorted()`函数的用法,包含其参数、回来值以及在实践使用中的示例。
根本概念
`sorted()`函数承受一个可迭代目标作为参数,并回来一个新的排序列表。原始列表不会被修正。
根本用法如下:
```python
numbers = [3, 1, 4, 1, 5, 9, 2, 6]
sorted_numbers = sorted(numbers)
print(sorted_numbers) 输出: [1, 1, 2, 3, 4, 5, 6, 9]
回来值
`sorted()`函数回来一个新的列表,该列表是依照升序摆放的。假如需求降序摆放,能够经过`reverse`参数完成。
```python
numbers = [3, 1, 4, 1, 5, 9, 2, 6]
sorted_numbers_desc = sorted(numbers, reverse=True)
print(sorted_numbers_desc) 输出: [9, 6, 5, 4, 3, 2, 1, 1]
key参数
`key`参数答应你指定一个函数,该函数将被用来从列表的每个元素中提取一个用于比较的键。
```python
numbers = [(1, 'one'), (2, 'two'), (3, 'three')]
sorted_numbers = sorted(numbers, key=lambda x: x[1])
print(sorted_numbers) 输出: [(2, 'two'), (1, 'one'), (3, 'three')]
reverse参数
`reverse`参数是一个布尔值,假如设置为`True`,则列表元素将被逆序摆放。
```python
numbers = [3, 1, 4, 1, 5, 9, 2, 6]
sorted_numbers_desc = sorted(numbers, reverse=True)
print(sorted_numbers_desc) 输出: [9, 6, 5, 4, 3, 2, 1, 1]
cmp参数
尽管`cmp`参数在Python 3中已被弃用,但为了兼容性,这儿仍扼要介绍。`cmp`参数答应你供给一个比较函数,该函数承受两个参数并回来一个整数,表明第一个参数是否小于、等于或大于第二个参数。
```python
def compare(x, y):
return (x > y) - (x 关于字符串列表,`sorted()`函数默许依照字典序进行排序。
```python
strings = [\