当前位置:   article > 正文

python--类和实例调用_出生地实例调用 python

出生地实例调用 python

在这里插入图片描述
self指向的是实例对象,作为第一个参数,使用时不需要传入此参数。

class Student(object):
    #定义一个Student类,
    def __init__(self, name, score,age):
        self.name = name
        self.score = score
        self.age = age
    def print_score(self):
        #定义类方法,实例对象可调用
        return self.name,self.score
    def get_grade(self):
        if self.score >= 90:
            return 'A'
        elif self.score >= 60:
            return 'B'
        else:
            return 'C'
    
st1 = Student('lingyummu',67,25)
    #创建一个Student类对象st1
print(st1.name,st1.age,st1.score)
print(st1.print_score())
print(st1.get_grade())
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/973150
推荐阅读
相关标签
  

闽ICP备14008679号