标签: python oop pylint
编辑器会提示我第3行有一个错误,即c没有名为a的属性。 当然,此代码可以正常工作。
class Config: pass c = Config() setattr(c, 'a', 'xxxxxx') print(c.a)