30
여러 루프에서 벗어나는 방법?
다음 코드가 주어지면 작동하지 않습니다. while True: #snip: print out current state while True: ok = get_input("Is this ok? (y/n)") if ok.lower() == "y": break 2 #this doesn't work :( if ok.lower() == "n": break #do more processing with menus and stuff 이 작업을 수행하는 방법이 있습니까? 또는 입력 루프에서 …