前回、クラスってこういうものって説明をしました。 今回はdef __init__(self, name) の部分について詳しくみていきます。 __init__() を使ってクラスの中で属性(nameとかageとか)を定義しておけば、 sing() メソッドの中でその属性が使えたはずだけど __init__() が ...
以前の記事で、Pythonでルーレット作成しました。 今日は作成に当たってpythonを使う中で、構文理解に時間がかかったselfやらinitをしっかり理解しようというモチベーションのもと、この記事を書いてます。やっぱ自分で説明しようとすると自分にも身に ...
import random class Card: def init(self, suit, rank): self.suit = suit self.rank = rank def str(self): return f"{self.rank['rank']} of {self.suit}" class Deck: def ...
Step 7: Inside the init method, call the init method of the Person class using super () to initialize name and age, assign person_id to self.person_id. Step 8: Define the DisplayDetails class that ...