Untitled

 avatar
unknown
plain_text
3 years ago
210 B
8
Indexable
answer = input("Do you want to end game? (yes or no): ")
answer = answer.strip().lower()

while answer != "yes":
    answer = input("Do you want to end game? (yes or no): ")
    answer = answer.strip().lower()
Editor is loading...