From c8eb8152cadb983755451c272b80d503cd16e1c4 Mon Sep 17 00:00:00 2001
From: Adam Blank <blank@caltech.edu>
Date: Fri, 11 Oct 2024 23:47:21 +0000
Subject: [PATCH] Add new file

---
 05/animal_game.py | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 05/animal_game.py

diff --git a/05/animal_game.py b/05/animal_game.py
new file mode 100644
index 0000000..e015382
--- /dev/null
+++ b/05/animal_game.py
@@ -0,0 +1,20 @@
+import random
+from game_utils import ask_for_choice, prompt_yes_no
+
+
+def play_animal_game():
+    choices = ['cow', 'dog', 'horse', 'cat', 'bird']
+    choice = random.choice(choices)
+    animal = ask_for_choice(
+        "Which animal am I thinking of between " + ", ".join(choices) + "? ", choices)
+    if animal == choice:
+        print("Yes! It was " + choice + "!")
+    else:
+        print("No! It was " + choice + "!")
+
+
+again = True
+while again:
+    play_animal_game()
+    again = prompt_yes_no('Would you like to play again (y/n)? ')
+    print("Goodbye!")
-- 
GitLab