Skip to content

Latest commit

 

History

History
71 lines (60 loc) · 854 Bytes

untitled.md

File metadata and controls

71 lines (60 loc) · 854 Bytes
description
차이점 파악

pass, continue, break

  • pass : 실행할 코드가 없는 것으로 다음 행동을 계속해서 진행합니다.
  • continue : 바로 다음 순번의 loop를 수행합니다.
  • break : 반복문을 멈추고 loop 밖으로 나가도록 합니다.

1. pass 예시

## 실행
for i in range(10):
    if i % 2 == 0:
        pass
        print(i)    
    else:
        print(i)
print("Done")

## 결과
0
1
2
3
4
5
6
7
8
9
Done

2. continue 예시

## 실행
for i in range(10):
    if i % 2 == 0:
        continue
        print(i)    
    print(i)
print("Done")

## 예시
1
3
5
7
9
Done

3. break 예시

## 실행
for i in range(10):
    if i % 2 == 0:
        break
        print(i)    
    else:
        print(i)
print("Done")

## 예시
Done