# Hand.py class Hand(object): """A labeled collection of cards that can be sorted""" #------------------------------------------------------------ def __init__(self, label=""): """Create an empty collection with the given label.""" #------------------------------------------------------------ def add(self, card): """ Add card to the hand """ #------------------------------------------------------------ def sort(self): """ Arrange the cards in descending bridge order.""" #------------------------------------------------------------ def dump(self): """ Print out contents of the Hand."""