class CCC:
@property def aa(self): print(123)
CCC().aa
还有个函数 是给变成变量调用的函数(因为函数加了@property,就不可以传参进去了) , 赋值用的装饰器函数@xxx.setter
参考: https://www.cnblogs.com/tangjunjun/p/12078686.html