可能重複:
Python: Continuing to next iteration in outer loop跳過父循環中的for循環Python中
也許標題是一種混亂,但你會明白我的意思的代碼:
for item in items: #i want to skip one loop of this bucle
for i in item: #loop nº2
if i==5:
continue #but this only skip a loop in nº2, there's no propagation
我該如何得到這個工作? 在此先感謝。
你在找'break'嗎? – Pwnna