前提・実現したいこと
こちらのサイトを初めて使わせていただきます。
Python初心者です。
Pythonでクラスの使い方を勉強しています。
インスタンス変数にリストを持たせ、
リスト内にクラスオブジェクトを保持させたいと考えています。
発生している問題・エラーメッセージ
下記エラーメッセージが発生し、インスタンス変数を取得することができません。
"CardShelf" object has no attribute "cards"
エラーが発生している行は、こちらになります。
card = self.cards[self.index]
該当のソースコード
Python
1class Card(object): 2 def ___init___(self, number, type_of_card): 3 self.number = nubmer 4 self.type_of_card = type_of_card 5 6 def printMe(self, someone): 7 print(someone + ":" + self.type_of_card + self.number) 8 9class CardShelf(object): 10 def ___init___(self): 11 numbers[1,2,3,4,5,6,7,8,9,10,11,12,13] 12 type_of_card = ["♠", "♥", "♣", "♦"] 13 self.cards = [] 14 for types in type_of_card: 15 for num in numbers: 16 self.cards.append(Card(num, types)) 17 random.shuffle(self.cards) 18 self.index = 0 19 20 def getNext(self): 21 card = self.cards[self.index] 22 self.index += 1 23 return card 24 25 26
試したこと
スペルミスはなく、文法的な問題だと思いますが、
どのような文法ミスなのかが、いくら調べてもわかりません。
補足情報(FW/ツールのバージョンなど)
エディタ:Visual Studio 2019 Community
Python環境:Python3.7 (64bit)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/09 14:50