🙆♂️ 변수 설정 """ 3. 게임 내 필요한 설정 """ . . . #적기 격추 = shootDown shootDown=0 #적기 놓침 = missed missed=0 #포인트값 #point = (shootDown*100)-(missed-50) point=0 . . . """ 4. 메인 이벤트 """ . . . """ 4-3. 입력과 시간에 따른 변화 """ . . . for i in cd_del_enemList: del enemList[i] #적기 제거 shootDown += 1 #적군 격추 시 증가 point += 100 #적군 격추 시 포인트 100 증가 for i in del_enemList: del enemList[i] missed+=1 #적기 놓치면 증가 point-=50 #적기 놓치면 -..