diff --git a/sports.py b/sports.py index c099cc3..19c2d26 100644 --- a/sports.py +++ b/sports.py @@ -58,3 +58,7 @@ def training_or_play(self): else: print(f"{self.myplayer} has lost the game.") exit() + + def check_status(self): + print(f"Current Stamina: {self.stamina}") + print(f"Current Speed: {self.speed}")