Is there a way to append the current date to an output file. My output statement looks like,
result=open('Results.csv','wb')
If I run it today, I would like the file name to be something like Results20100528 (for May 28, 2010). If I run it tomorrow, I would like it to be Results20100529.
Thank you.