pythonでシングルトンを書くと結構スマートに書けるっぽいことを知ったのでメモ。 まあ、私は滅多にシングルトン使わないんですけれど。 シングルトンっていうのは以下のようなやつです。 Copy class NormalSingleton: _instance = None def __init__(self): print('init') @classmethod def get_instance(cls): if cls._instance is None: cls._instance = cls() return cls._instance if __name__ == '__main__': a = NormalSingleton.get_instance() # initが表示される b = NormalSingleton.get_instance() # 何も表示されない pri