任意のクラスの単純な表現が欲しいのですが{ property = value }
、 auto はありますか__repr__
?
ベストアンサー1
最も簡単な方法:
def __repr__(self):
return str(self.__dict__)
任意のクラスの単純な表現が欲しいのですが{ property = value }
、 auto はありますか__repr__
?
最も簡単な方法:
def __repr__(self):
return str(self.__dict__)