So my issue is that I exported an excel file as a csv file. I've imported the file into Python and added it to a matrix which looks like:
A = [[1, '13/04/2015 12:22:45'],
[2, '13/04/2015 12:22:46'],
[3, '12/04/2015 12:30:00']]
I want to sort this by date and time. I have found several solutions that sort datetimes using the built in sorted() function, but none of the examples have additional array columns with other values.
Thanks for your help!