1. ホーム
  2. パイソン

[解決済み】Pythonクラスの全プロパティを表示する【重複あり

2022-04-05 10:21:22

質問

Animalというクラスがあり、いくつかのプロパティを持っています。


class Animal(object):
    def __init__(self):
        self.legs = 2
        self.name = 'Dog'
        self.color= 'Spotted'
        self.smell= 'Alot'
        self.age  = 10
        self.kids = 0
        #many more...

これらのプロパティをすべてテキストファイルに出力したいと思います。今、私がやっている醜い方法は、次のようなものです。


animal=Animal()
output = 'legs:%d, name:%s, color:%s, smell:%s, age:%d, kids:%d' % (animal.legs, animal.name, animal.color, animal.smell, animal.age, animal.kids,)

もっと良いPythonicな方法はないのでしょうか?

どのように解決するのですか?

この単純なケースでは vars() :

an = Animal()
attrs = vars(an)
# {'kids': 0, 'name': 'Dog', 'color': 'Spotted', 'age': 10, 'legs': 2, 'smell': 'Alot'}
# now dump this in some way or another
print(', '.join("%s: %s" % item for item in attrs.items()))

Pythonのオブジェクトをディスクに保存したい場合は、以下のサイトを参照してください。 shelve - Python オブジェクトの永続化 .