Kory Wheatley wrote: > In Python how would you print the date in a file... Here's my favorite way: >>> import datetime >>> datetime.date.today().isoformat() '2004-08-24' Jeffrey