I have a list of lists. For example,
[ [0,1,\'f\'], [4,2,\'t\'], [9,4,\'afsd\'] ]
If I wanted to sort the outer list by the string field o
Itemgetter lets you to sort by multiple criteria / columns:
sorted_list = sorted(list_to_sort, key=itemgetter(2,0,1))