给定字符串: xs = ['dddd','a','bb','ccc'] 输出排序结果: ['a','bb','ccc','dddd']
python根据字符串长度排序方法:
法1:
法2:
注意:当传递lambda给sort时,需要返回integer,而不能为bool数。
使用: xs.sort(lambda x,y: len(x) < len(y))则不对。
CopyRight © 2010-2021 脚本学堂 Jb200.com , All Rights Reserved.