# Module Player.py # Receives player input class Player: def get_init_input(self, prompt: str = "") -> str: user_input = input(prompt) return user_input def get_user_word(self) -> str: pass