Example #1
0
 def __init__(self):
     Deck.__init__(self)
     Hand.__init__(self)
     self.playerTop5Cards = {}
     self.game = {}
     self.sortOrder = ['A', 'K', 'Q', 'J', '0', '9', '8', '7', '6', '5', '4', '3', '2']
     self.suits = ['S', 'H', 'D', 'C']