[Python 파이썬 독학 7-3일차]
# 스타크레프트 전반전 개별 유닛별 class 생성 # 마린 class - 부모 class 로 사용되는 Unit 과 AttackUnit 에서 상속 받는 마린 class 생성 - stimpack(스팀팩) : 특수 기능 옵션 추가. # 일반 유닛 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("{0} : {1} 방향으로 이동합니다. [속도 : {2}]" .format(self.name, location, self.speed)) def ..
파이썬 스터디/파이썬-Python 기본편
2020. 9. 30. 23:39