摘要: python有两个魔法方法__getattr__和__getattribute__,都是用来获取对象属性,但很容易混淆 class Parent(object): def __init__(self): pass def __getattr__(self, item): print ("This i 阅读全文
posted @ 2022-11-16 21:20 我的腹肌不见了 阅读(58) 评论(0) 推荐(0)