<div class="gmail_quote">On Tue, Mar 17, 2009 at 2:16 PM, Jared White <span dir="ltr">&lt;<a href="mailto:dukelx2005@gmail.com">dukelx2005@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>This is what i have so far an this is not what i want it to do</div>
<div>&quot;NO this isnt homework&quot; i am trying to learn this myself </div>
<div> </div>
<div>#!/usr/bin/env python<br>#<br>#    Author: J White<br>#    Python 2.5.2<br>#</div>
<div>howmany = int(raw_input(&#39;How many lines &#39;))<br>rhowmany = howmany<br>strout = &#39;*&#39;<br>while howmany &gt; 0:<br>    print strout<br>    strout += &#39;*&#39;<br>    howmany -= 1    <br></div>
</blockquote><div><br> <br>try this:<br><br>mystr = &quot;h&quot;<br>print mystr*10<br><br>that should help.<br><br>-Wayne<br></div></div>