I have the following code:<br><br>import gzip<br>import datetime<br>date = datetime.date.today()<br>name = date.strftime(&#39;%m-%d-%Y&#39;)+&#39;.gz&#39;<br>date.strftime(&#39;%m-%d-%Y&#39;)+&#39;.gz&#39;<br>print &quot;The name of the file will be&quot;, name<br>
<br>the output is:<br>The name of the file will be<br>The name of the file will be 06-08-2009.gz<br><br><br>I can&#39;t figure out why &#39;The name of the file will be&#39; is printing twice. Any help appreciated.<br>