プログラム ( ) があり、そのコード内でblackjack.py
別のプログラムの (cards.py
および) にアクセスします。games.py
これのほとんどは本からのものなので、それがどのように機能するかを理解するのに苦労しています.
のコードは次のcards.py
とおりです。
class Card(object):
""" A playing card. """
RANKS = ["A", "2", "3", "4", "5", "6", "7",
"8", "9", "10", "J", "Q", "K"]
SUITS = ["c", "d", "h", "s"]
def __init__(self, rank, suit, face_up = True):
self.rank = rank
self.suit = suit
self.is_face_up = face_up
def __str__(self):
if self.is_face_up:
rep = self.rank + self.suit
else:
rep = "XX"
return rep
def flip(self):
self.is_face_up = not self.is_face_up
class Hand(object):
""" A Hand of playing cards. """
def __init__(self):
self.cards = []
def __str__(self):
if self.cards:
rep = ""
for card in self.cards:
rep += str(card) + "\t"
else:
rep = "<empty>"
return rep
def clear(self):
self.cards = []
def add(self, card):
self.cards.append(card)
def give(self, card, other_hand):
self.cards.remove(card)
other_hand.add(card)
class Deck(Hand):
""" A deck of playing cards. """
def populate(self):
for suit in Card.SUITS:
for rank in Card.RANKS:
self.add(Card(rank, suit))
def shuffle(self):
import random
random.shuffle(self.cards)
def deal(self, hands, per_hand = 1):
for round in range(per_hand):
for hand in hands:
if self.cards:
top_card = self.cards[0]
self.give(top_card, hand)
else:
print "Can't continue deal. Out of cards!"
if __name__ == "__main__":
print "This is a module with classes for playing cards."
raw_input("\n\nPress the enter key to exit.")
のエラー チェックを作成blackjack.py
していて、これまでに使用されたカードの数を収集する必要があります。の値の数にアクセスすることでそれができると思いますcards[]
。問題は、それを行う方法がわからないことです。
ただし、これはすべて理論上の話です。「blackjack.py」コードも含めますので、皆さんは私が何をしようとしているのかを見て、私のロジックに欠陥があるかどうかを判断するのに役立ててください.
blackjack.py
コード
あらゆるご意見をお待ちしております。