0
0

More than 3 years have passed since last update.

親クラスで子クラスのクラス名を取得する

Posted at

これでKodomoと出力される

class Oya(object):
    def __init__(self):
        print(type(self).__name__)

class Kodomo(Oya):
    def __init__(self):
        super().__init__()

child = Kodomo()
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0