From bad7de4db4206cd1c398ccedea52e5f0a279d841 Mon Sep 17 00:00:00 2001 From: Valeriia Danyliuk Date: Sun, 8 Oct 2023 14:22:53 +0300 Subject: [PATCH] Implemented necessary classes and methods, but I couldn't find a way to make line 17 shorter without changing the output --- app/main.py | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index fa56336e..e64c00e3 100644 --- a/app/main.py +++ b/app/main.py @@ -1 +1,32 @@ -# write your code here +class Animal: + alive = [] + + def __init__( + self, + name: str, + health: int = 100, + hidden: bool = False + ) -> None: + + self.health = health + self.name = name + self.hidden = hidden + self.alive.append(self) + + def __repr__(self) -> str: + return f"{{Name: {self.name}, Health: {self.health}, Hidden: {self.hidden}}}" + + +class Herbivore(Animal): + def hide(self) -> None: + self.hidden = not self.hidden + + +class Carnivore(Animal): + @classmethod + def bite(cls, herbivore: Animal) -> None: + if isinstance(herbivore, Herbivore) and not herbivore.hidden: + herbivore.health -= 50 + + if herbivore.health <= 0: + cls.alive.remove(herbivore)