Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Hrabovyi committed Sep 15, 2023
1 parent b991c34 commit a393e00
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,39 @@
# 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:
return f"" \
f"{{Name: {self.name}," \
f" Health: {self.health}," \
f" Hidden: {self.hidden}" \
f"}}"


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


class Carnivore(Animal):
@staticmethod
def bite(target: Animal) -> None:
if isinstance(target, Carnivore) or target.hidden:
pass
else:
target.health -= 50
if target.health <= 0:
Animal.alive.remove(target)

0 comments on commit a393e00

Please sign in to comment.