
행멘 게임 단계별로 만들기 실습 (3) *구현 내용 : while 반복문을 이용하여 while의 조건문이 false가 됐을 때 반복문을 멈추게 한다. while의 조건문이 false가 되는 경우는, 더이상 빈칸이 남아있지 않은 경우가 되어야한다.#Step 2import randomword_list = ["aardvark", "baboon", "camel"]chosen_word = random.choice(word_list)#테스트 코드print(f'Pssst, the solution is {chosen_word}.')blank = []for i in range(0, len(chosen_word)): i = "_" blank += i #빈칸이 모두 채워질 때까지 아래 코드 반복하기#초기값..