반복문 안에 if 등을 사용하여, 반복문 전체를 넘기는 것이 아니라 특정 반복에서 1번 정도 넘어가는 것과 같이 사용한다.
count = 0 while count<=4 count+=1 if count==3: continue print(count)
결과