#This is a script that writes rules and instructions #First it sets variables import random games = ["backgammon", "pokemon", "war"] object = ["teammate", "card", "turn", "place", "board", "dice", "nice", "backgammon"] verb = ["choose", "pick", "give", "burn", "cut"] #Then it writes a title print("How to play " + random.choice(games)) #Then it loops through instructions for i in range(6): print("Rule " + str(i+1) + ": "+ random.choice(verb) + " a " + random.choice(object))