1. 클래스 선언 (Declaration) class : def __init__(): 생성자 __init__(): 생성자. self제외 모든 파라미터를 self.로 재정의해줘야 함. 멤버변수: self.name (클래스 내에 정의된 변수) class Unit: def __init__(self, name, hp, speed): self.name = name self.hp = hp self.speed = speed print("{0} 유닛이 생성되었습니다".format(name)) def move(self, location): print("[지상유닛 이동]") print("{0} : {1} 방향으로 이동합니다. [속도 : {2}]" \ .format(self.name, location, self.speed)..