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