- Python - 프로그래밍 시작하기
- Python 기초 (Basics)
- Python 변수 (Variables)
- Python 연산자 (Operators)
- Python 리스트 (List)
- Python 튜플 (Tuple)
- Python 문자열 (Strings)
- Python 집합 (Sets)
- Python 딕셔너리 (Dictionary)
- Python 흐름 제어 (Flow control)
- Python 함수 (Function)
- Python 클래스 (Class)
- Python 내장 함수 (Built-in function)
- Python 키워드 (Keyword)
- Keyword - and
- Keyword - as
- Keyword - assert
- Keyword - break
- Keyword - class
- Keyword - continue
- Keyword - def
- Keyword - del
- Keyword - elif
- Keyword - else
- Keyword - except
- Keyword - False
- Keyword - for
- Keyword - from
- Keyword - global
- Keyword - if
- Keyword - import
- Keyword - in
- Keyword - is
- Keyword - lambda
- Keyword - None
- Keyword - not
- Keyword - or
- Keyword - pass
- Keyword - return
- Keyword - True
- Keyword - try
- Keyword - while
- Python 파일 다루기
- Python datetime 모듈
- Python time 모듈
- Python collections.deque
- Python collections.namedtuple
- Python의 선 (Zen of Python)
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
break 문 / continue 문¶
break 문¶
break
는 for
과 while
과 같은 반복문을 종료하는데 사용됩니다.
for i in range(10):
print(i)
if i == 5:
break
0
1
2
3
4
5
break
가 실행되면 즉시 반복문 다음의 코드가 실행됩니다.
반복문 안의 반복문에서 break
가 실행되면 가장 내부의 반복문만 종료합니다.
for i in range(5):
for j in range(5):
print(i, j)
if j == 2:
break
0 0
0 1
0 2
1 0
1 1
1 2
2 0
2 1
2 2
3 0
3 1
3 2
4 0
4 1
4 2
continue 문¶
continue
는 반복문에서 다음 수행될 코드를 생략(skip)하는데 사용됩니다.
반복문이 종료되지는 않고 다음 반복이 수행됩니다.
for i in range(10):
if i == 5 or i == 7:
continue
print(i)
0
1
2
3
4
6
8
9
5와 7을 제외하고, 0에서 9까지의 숫자가 출력됩니다.
이전글/다음글
이전글 : while 문
다음글 : pass 문