Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem-user-19 committed Oct 7, 2023
1 parent b991c34 commit c8cce76
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions 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
self.health = health
self.hidden = False
Animal.alive.append(self)

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

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


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


class Carnivore(Animal):
def bite(self, herbivore: str) -> list:
if isinstance(herbivore, Herbivore) and not herbivore.hidden:
herbivore.health -= 50
if herbivore.health <= 0:
herbivore.die()

0 comments on commit c8cce76

Please sign in to comment.