Unit 5 Session 1 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Create a second Player instance and use a method to format a match description string that includes both players.
1) Instantiate a second Player object with "Bowser" as the character and "Pirahna Prowler" as the kart, storing it in `player_two`.
2) Utilize the `get_player()` method for both instances to generate a formatted match description.
⚠️ Common Mistakes
player_two = Player("Bowser", "Pirahna Prowler")
print(f"Match: {player_one.get_player()} vs {player_two.get_player()}")