From a7e6d52a2b2aaf3d899a17734003656816e5e61f Mon Sep 17 00:00:00 2001 From: Misha Bigun Date: Tue, 10 Dec 2024 12:12:45 +0200 Subject: [PATCH] Implement py-herbivore-and-carnivore --- app/main.py | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index fa56336e..926c5981 100644 --- a/app/main.py +++ b/app/main.py @@ -1 +1,30 @@ -# write your code here +class Animal: + alive = [] + + def __init__(self, name: str, health: int = 100) -> None: + self.name = name + Animal.alive.append(self) + self.hidden = False + self.health = health + + def __sub__(self, other: int) -> int: + return self.health - other + + 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(prey: Animal) -> None: + if not prey.hidden and isinstance(prey, Herbivore): + prey.health -= 50 + if prey.health <= 0: + Animal.alive.remove(prey)