I have a couple of list in a list sorted like this:
L = [['b','4'].['a','7'],['c','2']]
I want to see if it is possible to arrange the list so that it looks bit like this:
L = [['a','7'],['b','4'],['c','2']]
The first character of each list is placed alphabetically. How might I go about doing this?