[파이썬]class 정리 (상속, 다중상속)+pass, super 사용법
○ 상속 물려주는 클래스 부모클래스가 자식클래스에게 변수와 메소드를 물려준다. class 자식클래스(부모클래스) 형태로 사용된다. class human: def __init__(self, name, age): self.name = name self.age = age def Home(self, location): print("{0} 의 집은 {1}입니다. ".format(self.name, location)) class student(human): #human 클래스를 상속받아 student 클래스는 자식클래스가 된다 def __init__(self, name, age, grade): human.__init__(self, name, age) self.grade = grade print("{0}이고 나이는 ..
2021. 2. 5.