Please, if I have a list of tuples, say:
list = [('James', 27, 2000), ('Aaron', 24, 1290), ('Max', 23, 2300), ('Ben', 27, 1900)]
How do I get all the names in ascending order?
How do I get a list that shows the tuples in ascending order of names?
Thanks