while True: want_instructions = input("Do you want to see instructions? ").lower() # check the user says yes or no if want_instructions == "yes" or want_instructions == "y": print("you chose yes") break elif want_instructions == "no" or want_instructions == "n": print("you chose no") break else: print("please enter yes or no") continue print("we done")