在<Python装饰器(Decorators )>一文中介绍了python装饰器的概念,日常写代码时有一个装饰器很常见,他就是内置的@property. 我们一步步的来接近这个概念. 一个初始示例如下: LeosWorkGround项目下有一个名为leo01.py的文件内容如下: # coding=utf-8 class Student(object): def __init__(self , first_name , last_name , age , hobby): self.first_…