I have the following list created from a sorted csv
list1 = sorted(csv1, key=operator.itemgetter(1))
I would actually like to sort the list
list1 = sorted(csv1, key=lambda x: (x[1], x[2]) )