I have a dictionary whose components are all 2-tuples (all integers) and I want to find the key to the tuple with the largest second component. How can I do this in Python 2.6?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The following will do it (where
In this solution, the key (if you pardon the pun) is to use the optional |
|||||
|
|
aix' answer is a good one. You can achieve the same without using lambdas if you prefer, though:
|
|||
|
|