from bugged_card import Card # Create two cards card1 = Card("hearts", "2") card2 = Card("clubs", "A") # Print out their values print(card1) print(card2) # Change the suit of the first card card1.suit = "spades" # ASSERT 1 - check card1 is now spades assert card1.suit == "spades" # Change the number of card 2 card2.number = "2" # ASSERT 2 - card1 and card2 should now have the same number assert card1.number == card2.number