>>> sorted(pokemon, key=lambda x: x[2]) # sort by attack power, by this way >>> pokemon.sort(key=lambda x: x[2]) # or by this way #Date is like this [('Charmander', 'Fire', 52), ('Blastoise', 'Water', 83), ('Beedrill', 'Poison', 90)]