python
1class aaa(object): 2 def __init__(self): 3 print(type(self).__name__) 4 5class bbb(object): 6 def __init__(self): 7 aaa() 8 9c = bbb()
これだとaaaと出力されてしまいました。
bbbと出力されるためにはprint文をどう変えればいいでしょうか。
回答2件
あなたの回答
tips
プレビュー
投稿2020/02/06 06:40
編集2020/02/06 07:41python
1class aaa(object): 2 def __init__(self): 3 print(type(self).__name__) 4 5class bbb(object): 6 def __init__(self): 7 aaa() 8 9c = bbb()
これだとaaaと出力されてしまいました。
bbbと出力されるためにはprint文をどう変えればいいでしょうか。
回答2件
あなたの回答
tips
プレビュー