How can I sort this list in descending order?
timestamp = [ \"2010-04-20 10:07:30\", \"2010-04-20 10:07:38\", \"2010-04-20 10:07:52\", \"2010
You can simply do this:
timestamp.sort(reverse=True)