# Card Example # A Card object is a standard poker playing card. # Traditional test file. from card import Card c1 = Card(12, "S") print(c1) print(c1.rank, c1.suit, c1.color( )) print( ) c2 = Card(14, "H") print(c2) print(c2.rank, c2.suit, c2.color( ))