class Student(object):
pass
>>> bart = Student()
>>> bart
<__main__.Student object at 0x10a67a590>
>>> Student
<class '__main__.Student'>
__init__
class Student(object):
def __init__(self, name, score):
self.name = name
self.score = score
<aside>
⚠️ 第一个参数永远都是 self
,这个 self
有点类似其他语言的 this
,这个方法有点像其他方法的构造器函数。
</aside>