Skip to content

Commit

Permalink
Implement py-herbivores-and-carnivores
Browse files Browse the repository at this point in the history
  • Loading branch information
SevKrok committed Oct 9, 2023
1 parent b991c34 commit c623d3f
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
# 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"{{Name: {self.name}, "
f"Health: {self.health}, "
f"Hidden: {self.hidden}}}"
)

def die(self) -> None:
Animal.alive.remove(self)


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


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

0 comments on commit c623d3f

Please sign in to comment.