#functions here gang """AHHHHHHHHHHH""" def yes_no(question): while True: #check for yes/no response=input(question).lower() if response == "yes" or response == "y": return "yes" elif response == "no" or response == "n": return "no" else: print(response) print("please give a yes/no answer") continue def instructions(): #the instructions print(""" *** Instructions *** roll the dice and try to win! """) #main want_instructions = yes_no("Do you want to see the instructions?").lower() if want_instructions == "yes": instructions() print("program continues morbin")