为了账号安全,请及时绑定邮箱和手机立即绑定

请教 python2.5 不能识别@score.setter

 @property
    def score(self):
        return self.__score         
            
    @score.setter
    def score(self, score):
        if score < 0 or score > 100:
            raise ValueError('invalid score')
        self.__score = score

中 @score.setter 不是跟着@property附属产生的吗?为啥我自己电脑提示 

AttributeError: 'property' object has no attribute 'setter'?网页提交没问题。

有了@property 还附带产生了哪些?还有del?怎么看?

正在回答

1 回答

缩进问题,@score.setter以下的代码都往前缩进四个

0 回复 有任何疑惑可以回复我~
#1

慕粉4083696 提问者

非常感谢!
2016-10-10 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

请教 python2.5 不能识别@score.setter

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信