python_对字典进行排序

import itertools
thekeys = ['b','a','c']
thevalues = ['bbb','aaa','cccc']

d = dict(itertools.izip(thekeys,thevalues))  #创建字典
print d

def sortedDictValue(adict):
    keys = adict.keys()
    keys.sort()
    return map(adict.get,keys)


print sortedDictValue(d)

import itertools
thekeys = ['b','a','c']
thevalues = ['bbb','aaa','cccc']

def sortedDictValue(adict): #自定义的排序函数,先取得字典的keys(),然后对keys进行排序,最后根据排序好的keys取字典的值
    keys = adict.keys()
    keys.sort()
    return map(adict.get,keys)#只有这里不同,这里调用内置的map函数,对每个keys中的项目,调用adict.get函数,返回一个列表 

print sortedDictValue(d)

打印出相同的结果

   

你可能感兴趣的:(c,python,import)