This is an old revision of the document!
Code Snippets
# Date format import datetime current_process_date = datetime.datetime.strptime('24-07-2010', "%d-%m-%Y").date() current_process_date.strftime('We are the %d, %b %Y') print("/%s/*" % current_process_date.strftime("%Y/%m/%d"))