1、 (1)编写一个person类,属性为id,name,age编写方法,实现对person类的输入和输出 (2)编写一个student类,其父类为(1)中的person类,增加属性adp(表示院系)

(1)编写一个person类,属性为id,name,age编写方法,实现对person类的输入和输出(2)编写一个student类,其父类为(1)中的person类,增加属性adp(表示院系),并实现学生的输入和输出

class person():
    def __init__(self, id, name, age):
        self.id = id
        self.name = name
        self.age = age

    def poutput(self):
        print("id is:%s" % self.id)
        print(f"name is :{self.name}")
        print("age is :{}".format(self.age))


class student(person):
    def __init__(self, id, name, age, adp):
        person.__init__(self, id, name, age)
        self.adp = adp

    def poutput(self):
        person.poutput(self)
        print(f"adp is :{self.adp}")


Make = student("006", "uzi", 23, "永远滴神!")
Make.poutput()

运行结果:
1、 (1)编写一个person类,属性为id,name,age编写方法,实现对person类的输入和输出 (2)编写一个student类,其父类为(1)中的person类,增加属性adp(表示院系)_第1张图片

你可能感兴趣的:(Python实验项目,python)