From c623d3f31b49e8b66c2d7cd6d499c4fd0a7ebca8 Mon Sep 17 00:00:00 2001 From: Severyn Krok Date: Mon, 9 Oct 2023 12:55:22 +0300 Subject: [PATCH] Implement py-herbivores-and-carnivores --- app/main.py | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index fa56336e..ccc47abd 100644 --- a/app/main.py +++ b/app/main.py @@ -1 +1,36 @@ -# write your code here +class Animal: + alive = [] + + def __init__(self, + name: str, + health: int = 100, + hidden: bool = False + ) -> None: + self.name = name + self.health = health + self.hidden = hidden + Animal.alive.append(self) + + def __repr__(self) -> str: + return ( + f"{{Name: {self.name}, " + f"Health: {self.health}, " + f"Hidden: {self.hidden}}}" + ) + + def die(self) -> None: + Animal.alive.remove(self) + + +class Herbivore(Animal): + def hide(self) -> None: + self.hidden = not self.hidden + + +class Carnivore(Animal): + @staticmethod + def bite(prey: Herbivore) -> None: + if not prey.hidden and isinstance(prey, Herbivore): + prey.health -= 50 + if prey.health <= 0: + prey.die()