学习笔记(19):Python 面试100讲(基于Python3.x)-如何排序一个列表

立即学习:https://edu.csdn.net/course/play/26755/340127?utm_source=blogtoedu

1.对列表排序有哪几种方法

2.列表的sort方法与sorted函数都可以对列表进行排序,它们有什么区别呢?

3.如何倒序排列一个列表

 

总结:

使用sort和sorted都可以对列表进行排序

 

sort方法修改列表本身,而sorted函数返回一个列表的副本

 

将reverse参数值设为True,可以对列表进行倒序排列

你可能感兴趣的:(csdn笔记)