Python之字典

1.创建字典 

from collections import defaultdict
d1 = defaultdict(int)

 

2.按照value值排序

print sorted(dict.items(), key=operator.itemgetter(1))

 

posted @ 2018-03-17 09:37  Shiyu_Huang  阅读(165)  评论(0编辑  收藏  举报