Hi I got some problem about writting convention in python. Some tutorial ask me to write this :<span style="font-family: monospace;"></span><br><pre class="source-python"><span style="font-weight: bold;">a = </span><span style="font-weight: bold;" class="nu0">1</span><br style="font-weight: bold;"><span style="font-weight: bold;">s = </span><span style="font-weight: bold;" class="nu0">0</span><br style="font-weight: bold;"><span style="font-weight: bold;" class="kw1">print</span><span style="font-weight: bold;"> </span><span style="font-weight: bold;" class="st0">'Enter Numbers to add to the sum.'</span><br style="font-weight: bold;"><span style="font-weight: bold;" class="kw1">print</span><span style="font-weight: bold;"> </span><span style="font-weight: bold;" class="st0">'Enter 0 to quit.'</span><br style="font-weight: bold;"><span style="font-weight: bold;" class="kw1">while</span><span style="font-weight: bold;"> a != </span><span style="font-weight: bold;"
 class="nu0">0</span><span style="font-weight: bold;">:</span><br style="font-weight: bold;"><span style="font-weight: bold;">    </span><span style="font-weight: bold;" class="kw1">print</span><span style="font-weight: bold;"> </span><span style="font-weight: bold;" class="st0">'Current Sum:'</span><span style="font-weight: bold;">, s</span><br style="font-weight: bold;"><span style="font-weight: bold;">    a = </span><span style="font-weight: bold;" class="kw2">int</span><span style="font-weight: bold;" class="br0">(</span><span style="font-weight: bold;" class="kw2">raw_input</span><span style="font-weight: bold;" class="br0">(</span><span style="font-weight: bold;" class="st0">'Number? '</span><span style="font-weight: bold;" class="br0">))</span><br style="font-weight: bold;"><span style="font-weight: bold;">    s = s + a</span><br style="font-weight: bold;"><span style="font-weight: bold;" class="kw1">print</span><span style="font-weight: bold;"> </span><span
 style="font-weight: bold;" class="st0">'Total Sum ='</span><span style="font-weight: bold;">, s</span><br><br>And the response must be like this :<br><br style="font-weight: bold;"><span style="font-weight: bold;">Enter Numbers to add to the sum.</span><br style="font-weight: bold;"><span style="font-weight: bold;">Enter 0 to quit.</span><br style="font-weight: bold;"><span style="font-weight: bold;">Current Sum: 0</span><br style="font-weight: bold;"><span style="font-weight: bold;">Number? </span><b style="font-weight: bold;">200</b><br style="font-weight: bold;"><span style="font-weight: bold;">Current Sum: 200</span><br style="font-weight: bold;"><span style="font-weight: bold;">Number? </span><b style="font-weight: bold;">-15.25</b><br style="font-weight: bold;"><span style="font-weight: bold;">Current Sum: 184.75</span><br style="font-weight: bold;"><span style="font-weight: bold;">Number? </span><b style="font-weight: bold;">-151.85</b><br style="font-weight:
 bold;"><span style="font-weight: bold;">Current Sum: 32.9</span><br style="font-weight: bold;"><span style="font-weight: bold;">Number? </span><b style="font-weight: bold;">10.00</b><br style="font-weight: bold;"><span style="font-weight: bold;">Current Sum: 42.9</span><br><span style="font-weight: bold;">Number? </span><b style="font-weight: bold;">0</b><br style="font-weight: bold;"><span style="font-weight: bold;">Total Sum = 42.9</span><br><br>But when I write until this :<br><br><span style="font-weight: bold;">&gt;&gt;&gt; a = 1</span><br style="font-weight: bold;"><span style="font-weight: bold;">&gt;&gt;&gt; s = 0</span><br style="font-weight: bold;"><span style="font-weight: bold;">&gt;&gt;&gt; print 'Enter Numbers to add the sum'</span><br><br>I press enter, and alas my python response me :<br><span style="font-weight: bold;">Enter Numbers to add the sum<br></span><br>It didn't want waiting me until I finish writing the rest.<br>I know there is some mistake about
 my writing convention, <br>but what ??? Can you find it ??<br><br>But you know it's not finish,I ignore the error message and <br>writng the rest, but until i write this:<br><br><span style="font-weight: bold;">&gt;&gt;&gt; while a != 0:</span><br style="font-weight: bold;"><span style="font-weight: bold;">...     print 'Current Sum:', s</span><br style="font-weight: bold;"><span style="font-weight: bold;">...     a = int(raw_input('Number?'))</span><br style="font-weight: bold;"><span style="font-weight: bold;">...     s = s+a</span><br style="font-weight: bold;"><span style="font-weight: bold;">... print 'Total Sum =', s</span><br><br>Oh, man... another error message :<br><br>  <span style="font-weight: bold;">File "&lt;stdin&gt;", line 5</span><br style="font-weight: bold;"><span style="font-weight: bold;">    print 'Total Sum =', s</span><br style="font-weight: bold;"><span style="font-weight: bold;">        ^</span><br><br>Can you help me guys ??<br><br><span
 style="font-weight: bold;"></span><br><br><br><br><br></pre><br><br><span style="font-weight: bold;"></span><span style="font-weight: bold;"></span><br><p>&#32;