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

为什么无法提交,在自己的终端运行得出的结果是对的

http://img1.sycdn.imooc.com//5670fd6d00013b4508520565.jpg


代码无法提交,运行处理的结果只有Bob,并没有

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Person' object has no attribute '__score'

http://img1.sycdn.imooc.com//5670fdba00017c3609480283.jpg

正在回答

4 回答

你这个是什么IDE?


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

class Person(object):

    def __init__(self, name, score):

        self.name=name

        self.__score=score

p = Person('Bob', 59)

print (p.name)

try:

    print (p.__score)    

except AttributeError:

    print'AttributeError'

上面的代码是正确的,你试试。


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

史高武

class Person(object): def __init__(self, name, score): self.name=name self._score=score p = Person('Bob', 59) try : print p.__score except AttributeError: print 'Attributeerror' print p.name print p._score 这样就能通过了
2018-10-21 回复 有任何疑惑可以回复我~

因为答案非要匹配这个AttributeErro报错信息,但这个自带的编译不会有这个结果。所以不让你通过

你可以加个运行错误,就print AttributeErro 就可以了

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

以你自己的编译器为准,有的章节的在线编译器有点小的BUG,只要你能理解这个知识点就好了

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

举报

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

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

进入课程

为什么无法提交,在自己的终端运行得出的结果是对的

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