Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
SummerKatrin committed Dec 8, 2024
1 parent faa256e commit 1682bba
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,
hidden: bool = False
) -> None:
self.name = name
self.health = health
self.hidden = hidden
self.__class__.alive.append(self)

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


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


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

0 comments on commit 1682bba

Please sign in to comment.