classメソッドreturnの値が返ってこないです。意図としてはself.dt_min+10=20が返ってきて欲しいのですが...根本的に書き方がおかしいのでしょうか?
以下はプログラムの一部抜粋です。
python
1 2class Example: 3 def __init__(self): 4 self.file = 'sample.dat' 5 self.dt_min = 10 6 7 def create_period(self): 8 return self.dt_min + 10 9 10if __name__=='__main__': 11 ex = Example() 12 aa = ex.create_period 13 print(aa) 14 15#出力結果 16bound method Examplt.create_period of <__main__.Example object at 0x7f88592834e0>> 17↑20が返ってきて欲しい
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/17 10:47