Everything left out of what is shown is correct because I tested it before...
no matter what i put, it still says "That is not a choice" which is my else statement
1 = choice1
2 = choice2
3 = choice3
while True:
choice = raw_input("->")
if choice == 1:
dochoice1
break
elif choice == 2:
dochoice2
break
elif choice == 3:
dochoice3
break
else:
print "That Is Not A Choice"
continue