I have a date string with the format \'Mon Feb 15 2010\'. I want to change the format to \'15/02/2010\'. How can I do this?
>>> from_date="Mon Feb 15 2010" >>> import time >>> conv=time.strptime(from_date,"%a %b %d %Y") >>> time.strftime("%d/%m/%Y",conv) '15/02/2010'