목차
continue 예제 - for 반복문 경우 continue 정의 continue 예제 - while 반복문 경우
for i in range(5): if i == 2: continue print(i) 결과값: 0 1 3 4
for i in range(5):
if i == 2:
continue
print(i)
결과값:
0
1
3
4
(for, while) 반복문에서 특정 조건은 건너뛰고, 다음 조건 계속 실행. cf. break 키워드 : (for, while) 반복문 탈출. (= loop 빠져나오기). pass 키워드 : 아무 작업 안 함. 단지, 들여쓰기 문법 맞춤용.
(for, while) 반복문에서 특정 조건은 건너뛰고, 다음 조건 계속 실행.
cf.
i = 0 while i < 5: i += 1 if i == 3: continue print(i) 결과값: 1 2 4 5
i = 0
while i < 5:
i += 1
if i == 3:
2
5
최신댓글