Skip to content

Commit

Permalink
Done py_herbivores_and_carnivors
Browse files Browse the repository at this point in the history
  • Loading branch information
OlenaLis123 committed Sep 28, 2023
1 parent b991c34 commit 30d4e7a
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 "{Name:" \
+ f" {self.name}, Health: {self.health}, Hidden: {self.hidden}"\
+ "}"


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


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

0 comments on commit 30d4e7a

Please sign in to comment.