Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
taraskhom committed Dec 7, 2024
1 parent faa256e commit 2c42b4d
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,46 @@
# 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 __str__(self) -> str:
return (
f"Name: {self.name}, "
f"Health: {self.health}, "
f"Hidden: {self.hidden}"
)

def __repr__(self) -> str:

return f"{{{self}}}"


class Herbivore(Animal):

def hide(self) -> None:
self.hidden = not self.hidden


class Carnivore(Animal):

@staticmethod
def bite(animal: Herbivore | Carnivore) -> None:
if not animal.hidden and isinstance(animal, Herbivore):
animal.health -= 50
if animal.health <= 0:
Animal.alive.remove(animal)

0 comments on commit 2c42b4d

Please sign in to comment.