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: Use the provided Player class constructor to create a new instance with specific attributes.
1) Instantiate a Player object with "Yoshi" as the character and "Super Blooper" as the kart.
2) Store this object in a variable named `player_one`.
⚠️ Common Mistakes
player_one = Player("Yoshi", "Super Blooper")