本文整理汇总了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