''' DS2000 Spring 2022 Creating a card class card.py ''' class Card: def __init__(self, value, suit): ''' create a Card object with req'd value (int) and suit (string) ''' self.value = value self.suit = suit def __str__(self): ''' return a pretty string repping the card''' return str(self.value) + " of " + self.suit