[Tutor] sorry - indentation not pasted properly

Michael Schmitt lgwb@no_spam.home.com
Sat, 7 Oct 2000 16:33:47 -0500


Sorry the code should have been as follows.  It seems the tabs did not paste
properly when copied from my editor.


########################################
total = 0
for i in range(100):
    total = total + input("next number please:")
    print "The sum is now " , total
 
########################################
Michael Schmitt