I've got a list of different types that I've read from a spreadsheet.
>>>data
[1.0, u'1', u'COMPLETED', u'TONGUE', 30.0, 1.0, '2014/01/28 09:33:16', 30.0, 210.0, u'1 CW', 0.0, 2.0, 210.0, u'H1490']
[1.0, u'1', u'COMPLETED', u'TONGUE', 30.0, 1.0, '04/02/2014 09:14:36', 30.0, 230.0, u'2 CCW', 0.0, 7.0, 210.0, u'H990']
.......
and I would like to be sorted by date, i.e. sorted by the 6th field (data[1][6],data[2][6]
,etc...). How could I indicate Python to sort this list by field number 6?