pass (일단 넘어가기, 함수에서 break 같은 것)- 건물 유닛으로 예시1#일반 유닛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)) #건물 유닛class buildingunit(unit): def __init__(self,name,hp,locat..