python对列表进行从小到大排序并返回新的列表
时间: 2024-01-21 14:04:35 浏览: 74
Python实现对特定列表进行从小到大排序操作示例
可以使用sort()方法对列表进行从小到大排序,也可以使用sorted()函数返回一个新的从小到大排序的列表。
使用sort()方法:
```
my_list = [3, 1, 4, 2, 5]
my_list.sort()
print(my_list) # 输出 [1, 2, 3, 4, 5]
```
使用sorted()函数:
```
my_list = [3, 1, 4, 2, 5]
new_list = sorted(my_list)
print(new_list) # 输出 [1, 2, 3, 4, 5]
```
注意,使用sorted()函数会返回一个新的列表,原来的列表不会改变。而使用sort()方法会改变原来的列表。
阅读全文