I have the following list of lists:
lista = [['a', '1'], ['c', '3'], ['b', '2']]
And I want to sort this list according to the numbers, that is, I want it to look like this:
listaOrdenada = [['a','1'], ['b','2'], ['c','3']]
asked by
30.11.2015 / 19:42