摘要:
结果: 阅读全文
摘要:
# coding:utf-8 """ property:负责把方法变成属性 """ class Student(object): def get_score(self): return self._score def set_score(self, score): if not isinstance(score, int): ... 阅读全文
摘要:
结果: 阅读全文
摘要:
执行的结果是: 阅读全文