self可视为类的实例,在使用类创建实例时,我们可能需要强制传入一些参数。所以一般在构造函数 _init_ 里给实例的属性赋值。
class Student(obiect):
def __init__(self, name, score):
self.name = name
self.score = score
def print_score(self):
print "%s: %s" % (self.name, self.score)
在创建一个学生信息时,需要传入姓名和成绩,参数传入时 _init_ 已经通过self把属性赋值到实例student中了。
>>>student = Student("Hugh", 99)
>>>student.print_score
Hugh: 99
标签:函数,实例,python,self,init,score,print,name From: https://www.cnblogs.com/CLGYPYJ/p/17631837.html