前回、クラスってこういうものって説明をしました。 今回はdef __init__(self, name) の部分について詳しくみていきます。 __init__() を使ってクラスの中で属性(nameとかageとか)を定義しておけば、 sing() メソッドの中でその属性が使えたはずだけど __init__() が ...
In Python, instance initialization happens in the __init__ method. Generally speaking, you should keep as little logic as possible in it, and you should think about what the class needs and not how it ...