本文整理匯總了Python中Card.getSuit方法的典型用法代碼示例。如果您正苦於以下問題:Python Card.getSuit方法的具體用法?Python Card.getSuit怎麽用?Python Card.getSuit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Card
的用法示例。
在下文中一共展示了Card.getSuit方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: import Card [as 別名]
# 或者: from Card import getSuit [as 別名]
def __init__(self, deck):
"""A hand is simply the first five cards in the deck, if there are
five cards available. If not, return None."""
hand = 5 # Number of cards in a hand (int)
self._mysuits = [0] * 4 # a list of 4 zeros used for evaluation
self._myranks = [0] * 13 # a list of 13 zeros used for evaluation
#checks if there are enough cards in deck for a hand
if len(deck) >= hand:
#list to contain cards in hand
self._cards = []
#for each card in hand
for cards in range(hand):
#deal a new card
newCard = deck.deal()
self._cards.append(newCard)
#Get suit and rank for each card in hand
suit = Card.getSuit(newCard)
rank = Card.getRank(newCard)
#increase rank count for evaluation
rank -= 1
self._myranks[rank] += 1
#increase suit count for evaluation
if suit == "Spades":
self._mysuits[0] += 1
if suit == "Diamonds":
self._mysuits[1] += 1
if suit == "Hearts":
self._mysuits[2] += 1
if suit == "Clubs":
self._mysuits[3] += 1
else:
return None