super 는 클래스에서 상속받을 때 초기화(?)하는 방법 중 하나이다. 부모 클래스를 다음과 같이 두자. class Unit: def __init__(self, name, hp, speed): self.name = name self.hp = hp self.speed = speed def move(self, location): print("[지상 유닛 이동]") print("{0} : {1} 방향으로 이동합니다. [속도 {2}]".format(self.name, location, self.speed)) 상속받는 클래스 BuildingUnit 의 변수를 다음과 같이 초기화 할 수 있다. 클래스 이름은 스타에서 건물.. 이라 speed 요소는 0. 근데 출력문구는 건물이고 뭐고 무시하고 내 맴대로 했다 cl..