如何对一个list列表从小到大排序
时间: 2024-05-08 14:21:47 浏览: 31
Python实现对特定列表进行从小到大排序操作示例
可以使用Python内置函数sorted()来对一个list列表从小到大排序。具体操作如下:
```
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]
```
如果想要对原始的列表进行排序,可以使用sort()方法,操作如下:
```
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]
```
阅读全文