Python のクラス内のメンバー変数(プロパティともいう)の定義について質問です。
Python
1class Sample_1(): 2 def __init__(self): 3 self.x = 0.1 4 self.a = "a"
Python
1class Sample_2(): 2 x = 0.1 3 a = "a" 4 def __init__(self): 5 pass
クラス Sample_1 と、Sample_2 では、どちらも、self.x, self.a で参照することができます。なにか違いはありますか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。