sorted排序
排序函数sorted原型如下,接受一个可迭代的序列,可以自定义排序函数放在key中,可以对待排序序列先期进行处理,还可以指定正反序
sorted(iterable, /, *, key=None, reverse=False)
Return a new list containing all items from the iterable in ascendi
A custom key function can be supplied to customize the sort order,
reverse flag can be set to request the result in descending order.
作业:
1 2 3 4 5 6 | L = [( 'Bob' , 75 ), ( 'adam' , 92 ), ( 'Bart' , 66 ), ( 'Lisa' , 88 )] def by_name(t): return str .lower(t[ 0 ]) L2 = sorted (L, key = by_name) print (L2) |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步