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
in place
>>> l = [[0, 1, 'f'], [4, 2, 't'], [9, 4, 'afsd']] >>> l.sort(key=lambda x: x[2])
not in place using sorted:
>>> sorted(l, key=lambda x: x[2])