python中字典排序,列表中的字典排序

python中字典排序,列表中的字典排序html 一.使用python模塊:operatorpython import operator #首先要導入模塊operator x = {1:2, 3:4, 4:3, 2:1, 0:0} sorted_x = sorted(x.iteritems(), key=operator.itemgetter(1)) #按字典值排序(默認爲升序) print(s
相關文章
相關標籤/搜索