【说站】python列表排序的两种方式
2024-10-15
111
python列表排序的两种方式
1、使用sort()永久排序列表。
用sort()方法改变原始列表。若要逆转排序,只需将参数reverse=True传递给sort()。
>>> list ['zhangsan', 'lisi', 'bob', 'alex'] >>> list.sort() >>> list ['alex', 'bob', 'lisi', 'zhangsan'] >>> list.sort(reverse=True) >>> list ['zhangsan', 'lisi', 'bob', 'alex']
2、用函数sorted()临时排序列表。
函数sorted()允许按特定顺序显示列表元素,而不影响列表中的原始排列顺序。
若要反转排序,只需将参数reverse=True传送到sorted()。
>>> list = ['douglas','alex','solo','super'] >>> sorted(list) ['alex', 'douglas', 'solo', 'super'] >>> list ['douglas', 'alex', 'solo', 'super'] >>> sorted(list, reverse=True) ['super', 'solo', 'douglas', 'alex'] >>> list ['douglas', 'alex', 'solo', 'super']
以上就是python列表排序的两种方式,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:3个月前赞一波!
相关文章
- 【说站】python自定义日志如何实现
- 【说站】python有哪些注释的种类
- 【说站】python中__new__的重写
- 【说站】python如何解决初始化执行次数
- 【说站】python错误类型捕获的方法
- 【说站】python数据结构堆的介绍
- 【说站】mysql创建索引的三种方式
- 【说站】python参数调用的注意点
- 【说站】mysql表导出的两种方法
- 【说站】python Pandas读取数据文件的优点
- 【说站】mysql有哪些备份数据库的方式
- 【说站】python中in和is的区分
- 【说站】python异常中常见关键字
- 【说站】python os.path.join()函数的使用
- 【说站】python如何使用skimage包提取图像
- 【说站】python confusion_matrix()是什么
- 【说站】python中os.path.join()函数是什么
- 【说站】python中有哪些比较操作
- 【说站】python字符串的用法总结
- 【说站】java类的两种引用方法
文章评论
评论问答