class의 사용법이라던지..
class Character:
def __init__(self, name, hp, mp, power, dodge): ...
def nomal_attack(self, other): ...
def defence(self, damage): ...
class Player(Character):
def __init__ ...
super().__init__ ...
class Monster(Character):
...
while 의 사용법..
while True:
choice = input(" attack (1.nomal / 2.magic):")
if choice == "1":
player.nomal_attack(monster)
break
elif choice == "2":
player.magic_attack(monster)
break
else:
print("다른 공격은 할 수 없습니다")
...
완벽하진 않겠지만 나름 열심히 공부해가며 (엄청난 수정을 했지만) 완성했다.
피드백이 궁금하다..
어떤부분이 부족할지 빨리 알고싶다.