Oct-29-2019, 08:32 PM
(Oct-29-2019, 08:18 PM)Aurthor_King_of_the_Brittons Wrote: I would try to split it into two statements/evaluations (one on each side of "or"). I don't have Python open as I'm at work, so my syntax may be off.
while answer.lower() != "y" or answer.lower() != "n":
That doesn't work: both "y" and "n" result in the program staying in the while loop.