I'm making one of those really old text games.
I give the player two options.
- Run.
- Stay.
I let them choose like this:
Run = input("Do you:
1. Run
2. Stay.")
Then, an if
statement saying if they choose option:
- then more stuff prints. else if,
- then more stuff prints.
Then we get to my problem.
If they enter something other than choice 1 and 2, then I want it to repeat the question until they finally choose either option 1 or 2.