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

这是哪里错了?

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 'attribute error'

正在回答

2 回答

try:
    print (p.__score)
except AttributeError:
    print("AttributeError")

注意缩进

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

print 'attributeerror'

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

举报

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

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

进入课程

这是哪里错了?

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