num=input ("enter value")
while num<10: num=num+2 print num, print "goodbye"
The results are there and so is the problem: enter value:1 3 5 7 9 11 goodbye
It goes up to 11....how do I change it??
And should it be a variable or not??
now it's still adding 2 and printing if it's 9, printing 11.