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 simple type:
timestamp.sort() timestamp=timestamp[::-1]