学习笔记(18):Python 面试100讲(基于Python3.x)-如何排序一个列表
程序员文章站
2022-06-30 09:14:36
...
立即学习:https://edu.csdn.net/course/play/26755/340127?utm_source=blogtoedu
a = [5, 2, 4, 1, 3]
# 排序列表的方法
a.sort()
print(a)
a = [5, 2, 4, 1, 3]
sorted_a = sorted(a)
print(sorted_a)
# sort sorted区别
# sort改变list本身,但是sorted返回排序结果副本
# 反序
a = [5, 2, 4, 1, 3]
a.sort(reverse=True)
print(a)
a = [5, 2, 4, 1, 3]
sorted_a = sorted(a,reverse=True)
print(sorted_a)
上一篇: 写一个echarts的小例子
推荐阅读
-
学习笔记(27):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少
-
学习笔记(31):Python 面试100讲(基于Python3.x)-让字符串居中显示
-
学习笔记(09):Python 面试100讲(基于Python3.x)-你真的了解Python字符串吗
-
学习笔记(26):Python 面试100讲(基于Python3.x)-Python字典与JSON字符串如何互转
-
学习笔记(30):Python 面试100讲(基于Python3.x)-让字符串居中显示
-
学习笔记(26):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少
-
学习笔记(18):Python 面试100讲(基于Python3.x)-如何排序一个列表
-
学习笔记(04):Python 面试100讲(基于Python3.x)-绘制谢尔宾斯基三角形