Having trouble with the following code:
start_over = 1
question = input("Do you wish to try again? y/n: ")
if question == "y":
    start_over -= 1
else:
    raise SystemExit
If they enter y, it goes straight to the else condition.
Solved, was using input instead of raw_input
 
    