Just trying to write a program that will take the users input and add it to the list 'numbers':
print "Going to test my knowledge here"
print "Enter a number between 1 and 20:"
i = raw_input('>> ')
numbers = []
while 1 <= i <= 20 :
print "Ok adding %d to numbers set: " % i
numbers.append(i)
print "Okay the numbers set is now: " , numbers
However when I execute the program it only runs to raw_input()
Going to test my knowledge here
Enter a number between 1 and 20:
>>> 4
Is there some fundamental rule I'm missing here??