Python에는 break, continue, pass라는 3가지 루프 제어문이 있습니다.
조건이 만족되면 루프가 끊어져 루프에서 나옵니다.
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.
조건이 만족되면 건너뛰고 루프의 다음 반복으로 이동합니다.
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.
아무것도 하지 않습니다. 자리 표시자 역할을 합니다.
for i in range(10): if i == 5: pass print(i) # It will not do anything, even if the condition satisfies
위 내용은 Python의 루프 제어 문: 중단, 계속, 통과의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!