Skip to content

Commit

Permalink
'Solution'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorov-s-od committed Oct 9, 2023
1 parent b991c34 commit f9919d3
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,33 @@
# 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: {}, Health: {}, Hidden: {}}}".format(
self.name, self.health, self.hidden
)


class Herbivore(Animal):

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


class Carnivore(Animal):
def bite(self, herbivore: Herbivore) -> None:
if isinstance(herbivore, Herbivore) and herbivore.hidden is not True:
herbivore.health -= 50

if herbivore.health <= 0:
Animal.alive.remove(herbivore)

0 comments on commit f9919d3

Please sign in to comment.