我想在Python3中自我函數的自我屬性迭代,但我還沒有找到任何類似的東西。我發現如何在課堂上做here。如何迭代Python3中的類中的自我屬性?
我的問題是,這可能嗎?
class Foo:
def __init__(self, attr1, attr2):
self.attr1 = attr1
self.attr2 = attr2
def method1(self):
#Return sum of the values of the self attributes
pass
通過'attr1','attr2'? –
是的,themiurge和Gustavo評論下面的正確答案。 –