Skip to content

Commit

Permalink
Implement py-herbivore-and-carnivore
Browse files Browse the repository at this point in the history
  • Loading branch information
misha-cw committed Dec 10, 2024
1 parent faa256e commit a7e6d52
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) -> None:
self.name = name
Animal.alive.append(self)
self.hidden = False
self.health = health

def __sub__(self, other: int) -> int:
return self.health - other

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


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


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

0 comments on commit a7e6d52

Please sign in to comment.