import time
import random
target = random.randrange(1, 3, 2)
print target #for debug reasons
time.sleep(5)
shot = raw_input("Enter a random number")
while shot != target:
print "n0pe"
shot = raw_input("Enter a random number")
else:
print "you won"
as i was testing this funny game it just always said n0pe even if i was saying the right number. I cant figure out whats wrong with it!