Skip to content

Commit

Permalink
solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Familenko committed Sep 27, 2023
1 parent b991c34 commit 12936ec
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,38 @@
# 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

self.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 self.__str__()


class Herbivore(Animal):

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


class Carnivore(Animal):

@classmethod
def bite(cls, victim: "Herbivore") -> None:
if not isinstance(victim, Carnivore) and not victim.hidden:
victim.health -= 50
if victim.health <= 0:
cls.alive.remove(victim)

0 comments on commit 12936ec

Please sign in to comment.