-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
faa256e
commit b15ef88
Showing
1 changed file
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
# write your code here | ||
from __future__ import annotations | ||
|
||
|
||
class Animal: | ||
alive: list["Animal"] = [] | ||
|
||
def __init__(self, name: str, helth: int = 100) -> None: | ||
self.name = name | ||
self.health = helth | ||
self.hidden = False | ||
Animal.alive.append(self) | ||
|
||
def die(self) -> None: | ||
if self in Animal.alive: | ||
Animal.alive.remove(self) | ||
|
||
def __repr__(self) -> str: | ||
return (f"{{Name: {self.name}, Health: {self.health}, " | ||
f"Hidden: {self.hidden}}}") | ||
|
||
@classmethod | ||
def print_alive(cls) -> str: | ||
return str([repr(animal) for animal in cls.alive]) | ||
|
||
|
||
class Herbivore(Animal): | ||
def hide(self) -> None: | ||
self.hidden = not self.hidden | ||
|
||
|
||
class Carnivore(Animal): | ||
@staticmethod | ||
def bite(herbivore: "Herbivore") -> None: | ||
if isinstance(herbivore, Herbivore) and not herbivore.hidden: | ||
herbivore.health -= 50 | ||
if herbivore.health <= 0: | ||
herbivore.die() |