1
I have the following vector:
a = [['UK', 'FR', **numero**], ['UK', 'NL', **numero**], ['UK', 'PT', **numero**]]
Where the variable number are floating point values and different.
Wish to sort vector elements according to variable values number
For example:
I have the following vector and its values.
a = [['UK', 'FR', 0.021], ['UK', 'NL', 0.094], ['UK', 'PT', 0.034]]
After the ordination operation, I need him to stay that way:
a = [['UK', 'NL', 0.094], ['UK', 'PT', 0.034], ['UK', 'FR', 0.021]]
How can I do that?
Exactly what I needed @Anderson Carlos Woss! Again, thank you so much.
– Danilo