首页 > 代码库 > python

python

案例:

请给 tom 类增加一个私有属性 __score,表示分数,再增加一个实例方法 get_grade(),能根据 __score 的值分别返回 A-优秀, B-及格, C-不及格三档。

class tom(object):
    def __init__(self,name,score):
        self.__name = name
        self.__score = score
    def gerder(self):
       if self.__score >= 80:
           return ‘A+优秀‘
       if  self.__score >= 60:
           return ‘B+一般‘
       return ‘C+不及格‘
       
p1 = tom(‘xiaoming‘,90)
p2 = tom(‘xiaohua‘,60)
p3 = tom(‘xiaohong‘,50)

本文出自 “linux” 博客,请务必保留此出处http://gyulong.blog.51cto.com/6844383/1919310

python