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

帮我看下代码哪里有问题

class Person(object):


    def __init__(self, name, score):

        self.__name=name

        self.__score=score


    def get_grade(self):

        if self.__core >= 80:

            return 'A'

        if self.__score >=60:

            return 'B'

        return 'C'


p1 = Person('Bob', 90)

p2 = Person('Alice', 65)

p3 = Person('Tim', 48)


print p1.get_grade()

print p2.get_grade()

print p3.get_grade()


正在回答

3 回答

if self.__ >= 80:->if self.__score >= 80:

要细心

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

是 if self.__score,不是if self.__core

1 回复 有任何疑惑可以回复我~
Traceback (most recent call last):
  File "index.py", line 18, in 
    print p1.get_grade()
  File "index.py", line 8, in get_grade
    if self.__core >= 80:
AttributeError: 'Person' object has no attribute '_Person__core'

这个是运行报的错

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

举报

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

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

进入课程

帮我看下代码哪里有问题

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