30
Birden fazla döngü nasıl kesilir?
Aşağıdaki kod verildiğinde (işe yaramaz): 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 Bu işi yapmanın bir yolu var mı? Yoksa …