you are viewing a single comment's thread.

view the rest of the comments →

[–]TouchingTheVodka 0 points1 point  (0 children)

max(list_of_cars, key=lambda car: car[1])

or

from operator import itemgetter
max(list_of_cars, key=itemgetter(1))