Heim >Backend-Entwicklung >Python-Tutorial >Schleifenkontrollanweisungen in Python: break, continue, pass
In Python gibt es drei Schleifenkontrollanweisungen: break, continue und pass.
Wenn die Bedingung erfüllt ist, wird die Schleife unterbrochen und verlässt die Schleife.
for i in range(10): print(i) if i == 5: break # It will print : 0 to 5 and once the condition satisfies, # then the loop breaks.
Wenn die Bedingung erfüllt ist, wird sie übersprungen und mit der nächsten Iteration in der Schleife fortgefahren.
for i in range(10): if i == 5: continue print(i) # It will print : 0 to 9 except 5.
for i in range(10): if i != 5 : continue print(i) # It will print just 5.
Es macht nichts. Es fungiert als Platzhalter.
for i in range(10): if i == 5: pass print(i) # It will not do anything, even if the condition satisfies
Das obige ist der detaillierte Inhalt vonSchleifenkontrollanweisungen in Python: break, continue, pass. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!