7872人加入学习
(35人评价)
Python零基础入门学习2020最新版(SiKi)

使用Python3.8 于2019/10/20开始录制

价格 免费

#这里Person就是父类
class Teacher(Person): 
    def __init__(self, name, age):
        super().__init__(name,age)

#上一行调用父类里的初始化方法,也叫构造方法

t1 = Teacher('sk',50)
t1.eat()

[展开全文]
abcdebbie · 2020-02-23 · 0906-继承 0