[TIL] 파이썬 기초 수업 끝 -
Holly Yoon
1. 클래스 연습 - 스타크래프트 예제 Marine : health(40), attack_pow(5), attack(상대체력감소) Medic : health(60), heal_pow(6), heal(상대체력회복) Marine과 Medic Class를 각각 정의해주세요. attach(), heal() 은 각각 target변수를 넣으면 상대방의 체력이 증가/감소 하도록 만들어주세요. 체력의 경계를 정해주세요. (0~max_health) class Marine: def __init__(self, health=40, attack_pow=5): self.health = self.max_health = health self.attack_pow = attack_pow def attack(self, target): t..