电影和分类词典

时间:2019-10-26 21:55:08

标签: sorting dictionary lambda

我是新成员,我有一个关于分两步对python字典进行排序的问题。首先按值排序,然后在第二步中使用相等值时,应按字母顺序对相等值的键进行排序。

mydict={'Horror': 2, 'Romance': 2, 'Comedy': 2, 'History ': 0, 'Adventure ': 0, 'Action': 3, 'Adventure': 1, 'History': 2}

我需要这个:

mydict={'Adventure ': 0, 'History ': 0, 'Adventure': 1,'Comedy': 2,'History': 2,'Horror': 2, 'Romance': 2,'Action': 3}

感谢您的帮助。

0 个答案:

没有答案