我尝试使用值对字典进行排序
sort = sorted(the_dict.items(), key = lambda x : x[1])
但这会返回一个元组列表。
如何返回按键降序排列的字典?
答案 0 :(得分:1)
非常接近,您需要一个<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>10</release> <!-- This was the problem. -->
</configuration>
...
构造函数使其成为字典,请注意dict()
可以代替operator.itemgetter(1)
lambda