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 क्या यह काम …