在对字典值进行排序时,当存在多个具有相同值的键时,是什么决定了键进入的顺序是什么?

时间:2016-09-08 00:19:08

标签: python dictionary

说我在纸/剪刀/摇滚游戏中跟踪得分,并且玩家使用纸张和摇滚两次,让dict跟踪移动{'rock': 2, 'paper': 2, 'scissors': 0}我呼叫{{ 1}},返回列表print(sorted(dict, key=dict.get, reverse=True))。为什么它按此顺序而不是['rock', 'paper', 'scissors']

0 个答案:

没有答案