python 字典排序
Posted shnuxiaoan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 字典排序相关的知识,希望对你有一定的参考价值。
# 如何根据字典“键”或“键值”进行不同顺序的排序?
dic = ‘c‘: 1, ‘a‘: 3, ‘b‘: 2
# 按键升序排序
key_asc = sorted(dic.items(), key=lambda item:item[0], reverse=False)
print(key_asc)
# 结果:[(‘a‘, 3), (‘b‘, 2), (‘c‘, 1)]
# 按键降序排序
key_des = sorted(dic.items(), key=lambda item:item[0], reverse=True)
print(key_des)
# 结果:[(‘c‘, 1), (‘b‘, 2), (‘a‘, 3)]
# 按键值升序排序
value_asc = sorted(dic.items(), key=lambda item:item[1], reverse=False)
print(value_asc)
# 结果:[(‘c‘, 1), (‘b‘, 2), (‘a‘, 3)]
# 按键值降序排序
value_des = sorted(dic.items(), key=lambda item:item[1], reverse=True)
print(value_des)
# 结果:[(‘a‘, 3), (‘b‘, 2), (‘c‘, 1)]
以上是关于python 字典排序的主要内容,如果未能解决你的问题,请参考以下文章