# function go here def yes_no(question): """Checks user response to a question is yes / no (y/n), return 'yes' or 'no' """ want_instructions = yes_no("Do you want to see the instructions? ") print(f"you chose {want_instructions}") print("we done")