标签: python dictionary
dict = {a:{x:2,y:2}, b:{x:0,y:2}, c:{x:2,y:0}, d:{x:0,y:0}}
我想根据“' y”的增加顺序对这样的词典进行排序。然后降低' x'并返回钥匙。
我在这里发现了一个类似的问题 - Sort nested dictionary by value, and remainder by another value, in Python,但我想知道如何对其中一个值应用反向排序。