From 221988f24c14fcdabc6410e18c480e0c9e822f3f Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 17 Oct 2023 16:43:49 +0300 Subject: [PATCH] Solution --- app/main.py | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index fa56336e..11bf6d61 100644 --- a/app/main.py +++ b/app/main.py @@ -1 +1,38 @@ -# write your code here +from __future__ import annotations + + +class Animal: + alive = [] + + def __init__( + self, + name: str, + health: int = 100, + hidden: bool = False + ) -> None: + self.name = name + self.health = health + self.hidden = hidden + if self.health > 0: + Animal.alive.append(self) + + def __repr__(self) -> str: + return ( + f"{{Name: {self.name}, " + f"Health: {self.health}, " + f"Hidden: {self.hidden}}}") + + +class Herbivore(Animal): + def hide(self) -> None: + self.hidden = not self.hidden + + +class Carnivore(Animal): + @staticmethod + def bite(herbivore: Herbivore) -> None: + if isinstance(herbivore, Herbivore) and not herbivore.hidden: + herbivore.health -= 50 + if herbivore.health <= 0: + herbivore.health = 0 + Animal.alive.remove(herbivore)