Python字典分别按键值排序

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

#!/usr/bin/env python
# -*- coding: utf-8 -*-

myDict = {1:'v1', 4:'k4', 3:'s3', 2:'b2'}

#按key排序
myDict_Sorted_by_Key = sorted(myDict.iteritems(),key=lambda d:d[0], reverse = False)
print myDict_Sorted_by_Key

#按value排序
myDict_Sorted_by_Value = sorted(myDict.iteritems(),key=lambda d:d[1], reverse = False)
print myDict_Sorted_by_Value


转载于:https://my.oschina.net/goopand/blog/530246

你可能感兴趣的:(Python字典分别按键值排序)