使用setuptools对包进行安装
单个项目中对上层的包的调用是不好的
self和cls
- cls是class的缩写,可以用来调用类内部的静态方法
- self就像是C中的this
使用setattr和getattr来对对象进行赋值
python
class A: def __init__(self): self.a = 'a' a = A() setattr(a, 'a', 'b') >>> a.a 'b'
静态的方法
@staticmethod
单个项目中对上层的包的调用是不好的
python
class A: def __init__(self): self.a = 'a' a = A() setattr(a, 'a', 'b') >>> a.a 'b'
@staticmethod