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

代码代码问题在哪

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:
    print "AttributeError"
print p.__score


报错:Traceback (most recent call last):
  File "index.py", line 14, in
    print p.__score
AttributeError: 'Person' object has no attribute '__score'
Bob
AttributeError

正在回答

2 回答

python中禁止直接调用双下划线开头的函数,你要在Penson类里面再写一个实例来调用__score

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

慕侠0039860 提问者

非常感谢
2018-07-05 回复 有任何疑惑可以回复我~

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:
    print ("AttributeError")


对比一下,你或许能领悟的更深。O(∩_∩)O哈哈~

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

举报

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

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

进入课程

代码代码问题在哪

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