"Mike Hoy" <hoy...@gmail.com> wrote
I have the following code:
Is this in a file or are you typing it at the python
interpreter >>> primpt?
import gzip
import datetime
date = datetime.date.today()
name = date.strftime('%m-%d-%Y')+'.gz'
date.strftime('%m-%d-%Y')+'.gz'
print "The name of the file will be", name
If its in a file you should only get one print
If its at the >>> prompt you should get a string after
the second call to date.strftime and then your print.
the output is:
The name of the file will be
The name of the file will be 06-08-2009.gz
I can't figure out why 'The name of the file will be' is printing twice.
Any
help appreciated.
If that is what you get then me neither!
Alan G.
_______________________________________________
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor