Skip to content

Commit

Permalink
created parent class Animal and two inherit classes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlArt99 committed Dec 9, 2024
1 parent faa256e commit 02c7de5
Showing 1 changed file with 41 additions and 1 deletion.
42 changes: 41 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,41 @@
# 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 take_damage(self, damage: int) -> None:
self.health -= damage
if self.health <= 0:
self.die()

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

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

@classmethod
def __str__(cls) -> str:
return str(cls.alive)


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


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

0 comments on commit 02c7de5

Please sign in to comment.