python中求列表的每个数字的从大到小的次序
时间: 2024-04-08 11:31:11 浏览: 111
python 找出list中最大或者最小几个数的索引方法
要对列表中的数字进行从大到小的排序,可以使用Python内置的`sorted()`函数或列表对象的`sort()`方法。以下是两种方法的示例代码:
使用sorted()函数:
```python
my_list = [5, 2, 8, 1, 9]
sorted_list = sorted(my_list, reverse=True)
print(sorted_list)
```
使用sort()方法:
```python
my_list = [5, 2, 8, 1, 9]
my_list.sort(reverse=True)
print(my_list)
```
无论使用哪种方法,都会将列表中的数字按从大到小的顺序进行排序。
阅读全文