Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
valikdeb committed Sep 14, 2023
1 parent b991c34 commit 9d986df
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# 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
Animal.alive.append(self)

def __repr__(self) -> str:
name = self.name
health = self.health
hidden = self.hidden
return f"{{Name: {name}, Health: {health}, Hidden: {hidden}}}"


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


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

0 comments on commit 9d986df

Please sign in to comment.