class Person:
    def __init__(self, name):
            self.name = name

class Student(Person):
    def __init__(self,name,major):
        self.major = major
        super().__init__(name)
        print(self.name,self.major)


S = Person("김ㅇㅇ")
M = Student("김ㅇㅇ","컴공")
        

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: