Beispiel #1
0
def play_game(tree):
    if "animal" in tree:  # Make the guess
        print("You are thinking of a {0}.".format(tree["animal"]))
        if ask("Am I right?"):
            print("I've won!")
        else:
            if ask("Oh dear, can you help me do better?"):
                learn(tree)
    else:  # Ask the question and continue
        if ask(tree["question"]):
            play_game(tree["yes"])
        else:
            play_game(tree["no"])
Beispiel #2
0
def play_games():
    tree_root = load_tree()
    question = "Would you like to play the animal game?"
    while ask(question):
        play_game(tree_root)
        question = "Would you like to play again?"
    print("ok then, bye!")
    save_tree(tree_root)
Beispiel #3
0
def learn(tree):
    animal = raw_input("What animal were you thinking of? ")
    question = raw_input("What yes/no question will tell between a {0} and a {1}? ".format(animal, tree["animal"]))
    tree["question"] = question
    if ask('If you are thinking of a {0}, and I ask you "{1}", what would you answer?'.format(animal, question)):
        tree["yes"] = dict(animal=animal)
        tree["no"] = dict(animal=tree["animal"])
    else:
        tree["yes"] = dict(animal=tree["animal"])
        tree["no"] = dict(animal=animal)
    del (tree["animal"])