| Write a program that reads 10 numbers from the user
| and prints out the sum of those numbers.
hokiegal ...
Here is one way ...
nLoops = 10
total = 0
for i in range( nLoops ) :
num_in = int( raw_input( 'Enter an Integer : ' ) )
total += num_in
print total
--
Cousin Stanley
Human Being
Phoenix, Arizona