it keeps looping over and over again no matter what i put in
def getScores(totalScores, number):
score = input('Enter their score: ')
while score <=0 or score >=100:
print'You must enter a number between 0 and 100'
score = input('Enter a number between 0 and 100:')
for counter in range(0, number):
totalScores = totalScores + score
return totalScores