利用@property实现可控的属性操作 Python中没有访问控制符, 不像java之类的 public class Person{ private int x public int getAge(){ return x } public void setAge(int age){ this.x = age } } 使用下划线的字段和对应的方法来限制字段的操作 开始很多人可能会想这么干 class Student(object): def get_score(self): return sel…