I have the following list of lists in Python.
[[53.60495722746216, 'Percent Cats'],
[45.298311033121294, 'Percent Dogs'],
[1.0967317394165388, 'Percent Horses']]
Now I want the Animal with the highest percentage . In this case the it would be Cats.
How do I sort this structure to get the value out?