If I want to convert a single date format I can do:
import datetime, dateutil.parser
d = dateutil.parser.parse('2008-09-26)
print d.strftime('%A %d, %b %y' )but if I want convert a long list of time how can do it in the fastest way? for example: from ['2008-09-26’, '2008-09-28’, '2008-09-29’,.............] to [’26 sep’,’28 sep’,’29 sep’,................] Thank you Loredana -- http://mail.python.org/mailman/listinfo/python-list
