【说站】Python如何实现字符串排序
2024-11-25
84
Python如何实现字符串排序
说明
1、sort()方法对字符串排序时,使用“ASCII 字符顺序”,而不是实际的字典顺序。
2、如果需要按照普通的字典顺序来排序,就在 sort()方法调用时,将关键字参数key设置为 str.lower。
实例
spam = ['elephants', 'dogs', 'cats', 'badgers', 'ants'] spam.sort() print(spam) 打印结果: ['ants', 'badgers', 'cats', 'dogs', 'elephants'] sort()方法对字符串排序时,使用“ASCII 字符顺序”,而不是实际的字典顺序。这意味着大写字母排在小写字母之前。因此在排序时,小写的 a 在大写的Z 之后。 spam = ['Alice', 'ants', 'Bob', 'badgers', 'Carol', 'cats'] spam.sort() print(spam) 打印结果: ['Alice', 'Bob', 'Carol', 'ants', 'badgers', 'cats'] 如果需要按照普通的字典顺序来排序,就在 sort()方法调用时,将关键字参数key设置为 str.lower。 spam = ['a', 'z', 'A', 'Z'] spam.sort(key=str.lower) print(spam) 打印结果: ['a', 'A', 'z', 'Z']
以上就是Python实现字符串排序的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1个月前赞一波!1
相关文章
- 【说站】python自定义日志如何实现
- 【说站】python有哪些注释的种类
- 【说站】js中MomentJS构造字符串
- 【说站】python中__new__的重写
- 【说站】python如何解决初始化执行次数
- 【说站】python错误类型捕获的方法
- 【说站】python数据结构堆的介绍
- 【说站】python参数调用的注意点
- 【说站】mysql多表查询如何实现
- 【说站】js如何实现类型判断
- 【说站】python Pandas读取数据文件的优点
- 【说站】python中in和is的区分
- 【说站】python异常中常见关键字
- 【说站】python os.path.join()函数的使用
- 【说站】python如何使用skimage包提取图像
- 【说站】python confusion_matrix()是什么
- 【说站】python中os.path.join()函数是什么
- 【说站】python中有哪些比较操作
- 【说站】python字符串的用法总结
- 【说站】php方法断点如何实现
文章评论
评论问答