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: Modify the suit
attribute of the existing Card
instance and verify the update by printing the card's details.
1) Update the `suit` attribute of the `card` object to "Hearts".
2) Use the `print_card()` method to output the updated state of the card, ensuring it now shows "Hearts" instead of "Clubs".
⚠️ Common Mistakes
card.suit = "Hearts"
card.print_card()