Quantcast
Channel: Find out max value from a python dict - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by abtinmo for Find out max value from a python dict

$
0
0

you could get sorted dictionary with following code:

dict(sorted(d.items(), key=lambda kv:(int(kv[1][0]), kv[1][2])))

if you want to sort based on first element and second element, you cloud ues:

dict(sorted(d.items(), key=lambda kv:(int(kv[1][0]), kv[1][1])))

Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>