我是靠谱客的博主 温暖宝马,最近开发中收集的这篇文章主要介绍【Python-25】Python内置sort和sorted函数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

 1 Python对数据的排序有两种方法,一种是容器内置的sort函数,另外一种利用sorted函数

 

 2 对于sort函数我们不再进行讨论,只要研究一下sorted函数

 

 3 sorted函数的原形sorted(data,cmp,key,reverse),返回一个list

    data是要排序的数据

    cmp是一个比较函数,接收两个参数,但是默认不使用即none

    key是一个比较函数,接收一个参数,默认启用

    reverse是要按照升序还是降序,默认不使用即none,如果启用即设reverse = True

 

 4 以下我们利用字典来举例

 

#coding=utf-8  
import os
import sys

# insert
dic = {}
dic["ab"] = 5
dic["xab"] = -5
dic["asdab"] = 1235
dic["ewab"] = 5343
dic["sasfwab"] = -2345

# sorted
print "====================="
# data为item,按照key排序
tmp = sorted(dic.items() , key=lambda item:item[0])
print tmp
print "=====================n"

print "====================="
# data为item,按照value排序
tmp = sorted(dic.items() , key=lambda item:item[1])
print tmp
print "=====================n"

print "====================="
# data为vlaues,按照value排序,降序
tmp = sorted(dic.values() , key=lambda value:value , reverse=True)
print tmp
print "=====================n"


print "====================="
# data为items,先按照value排序再按照kye排序
tmp = sorted(dic.items() , key=lambda item:(item[1],item[0]))
print tmp
print "=====================n"

   

  

 

 

 

最后

以上就是温暖宝马为你收集整理的【Python-25】Python内置sort和sorted函数的全部内容,希望文章能够帮你解决【Python-25】Python内置sort和sorted函数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部