setattr和getattr的理解

穿精又带淫゛_ 提交于 2020-02-25 13:01:58
class A(object):

    def __init__(self):
        # self.x1 = {}
        object.__setattr__(self, "x", {})

    # def __getattr__(self, item):
    #     print(item)

    def __setattr__(self, key, value):
        print(self.x)
        print(key, value)
        self.x[key] = value
        print(self.x)


a = A()
a.name = "chr"
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!