class AttrDict(dict): def __init__(self, attr_dict): self.__dict = attr_dict def __getattr__(self, name): return self.__dict[name] def __repr__(self): ...
確定! 回上一頁