开发者社区> 问答> 正文

python必备内置函数- sorted()

python必备内置函数- sorted(iterable, *, key=None, reverse=False)

展开
收起
请回答1024 2020-03-30 11:50:20 423 0
1 条回答
写回答
取消 提交回答
  • 排序:

    In [174]: a = [1,4,2,3,1]
    
    In [175]: sorted(a,reverse=True)
    Out[175]: [4, 3, 2, 1, 1]
    
    In [178]: a = [{'name':'xiaoming','age':18,'gender':'male'},{'name':'
         ...: xiaohong','age':20,'gender':'female'}]
    In [180]: sorted(a,key=lambda x: x['age'],reverse=False)
    Out[180]:
    [{'name': 'xiaoming', 'age': 18, 'gender': 'male'},
     {'name': 'xiaohong', 'age': 20, 'gender': 'female'}]
    
    2020-03-30 11:50:31
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载