30
Làm thế nào để thoát ra khỏi nhiều vòng lặp?
Cho mã sau (không hoạt động): 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 Có cách nào để làm cho công …