📜  字典排序列表 python 代码示例

📅  最后修改于: 2022-03-11 14:47:17.179000             🧑  作者: Mango

代码示例6
orders = {
    'cappuccino': 54,
    'latte': 56,
    'espresso': 72,
    'americano': 48,
    'cortado': 41
}

sort_orders = sorted(orders.items(), key=lambda x: x[1], reverse=True)

for i in sort_orders:
    print(i[0], i[1])