Python基础 7 ---- 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基础 7 ---- Python内置sort和sorted函数

 


上一篇:ubuntu下安装firefox和chromium需要的flash


下一篇:我在阿里云开发者社区学习Java用到的书—— 《我的Java打怪日记》