Python Setattr And Dict Update
# 简化 init
你写了很多仅仅用作数据结构的类,不想写太多烦人的 __init__() 函数
123456789101112131415161718192021222324252627class Structure: _fields = [] def __init__(self, *args, **kwargs): if len(args) > len(self._fields): raise TypeError('Expected {}...
more...