Python 2.6.1:
How would I write a user input validation statement
scores < 0 or scores > 100
print error message and ask for input again?
Where would I place it, in the below code?
num_test = raw_input("How many test would you like to average? ")
scores = []
for i in xrange(int(num_test) ):
scores.append(input("score "+str(i)+":"))