Skip to content

Commit

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

def __repr__(self) -> str:
return str(self)

@property
def health(self) -> int:
return self._health

@health.setter
def health(self, new_health: int) -> None:
if new_health > 0:
self._health = new_health
else:
self._health = 0
if self in Animal.alive:
Animal.alive.remove(self)


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


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

0 comments on commit 593d2af

Please sign in to comment.