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
Like this:
import operator l = [...] sorted_list = sorted(l, key=operator.itemgetter(desired_item_index))