自動__repr__メソッド 質問する

自動__repr__メソッド 質問する

任意のクラスの単純な表現が欲しいのですが{ property = value }、 auto はありますか__repr__?

ベストアンサー1

最も簡単な方法:

def __repr__(self):
    return str(self.__dict__)

おすすめ記事