인프런 커뮤니티 질문&답변
while 넣어 봤는데 왜 안되는 거죠?
작성
·
215
0
이렇게 썼는데..... 안되네영
# 전군 피해
for unit in attack_units:
    while:
        unit.damaged(randint(5, 21)) # 공격은 랜덤으로 받음
    if unit.hp >= 0:
        continue
    elif unit.hp <= 0:
        break
# 게임 종료
game_over()







