[Tutor] Can't figure out why this is printing twice

The Green Tea Leaf thegreentealeaf at gmail.com
Mon Jun 8 17:07:55 CEST 2009


Could it be some import statement? That the gzip file is "shadowed" in some way?

On Mon, Jun 8, 2009 at 16:11, Alan Gauld<alan.gauld at btinternet.com> wrote:
>
> "Mike Hoy" <hoym74 at 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 at python.org
> http://mail.python.org/mailman/listinfo/tutor
>



-- 
The Green Tea Leaf   thegreentealeaf at gmail.com   thegreentealeaf.blogspot.com


More information about the Tutor mailing list