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 an instance of the Card
class using the provided suit "Spades" and rank "8".
1) Instantiate an object of the `Card` class with "Spades" for the suit and "8" for the rank.
2) Store the instance in a variable named `card`.
⚠️ Common Mistakes
card = Card("Spades", "8")