break & continue

2019. 8. 8. 22:43Programing/Python

반응형

반복 명령중 끝내고 싶을때 break 사용

i = 0

while True:        
  print(i)
  print("hello")
  print("korea")
  i = i + 1         
  
  if i > 3:
    break
0
hello
korea
1
hello
korea
2
hello
korea
3
hello
korea


 

 

특정조건에서 밑에 코드를 실행시키고 싶지 않을시 continue사용

i = 0

for i in range(3): 
  print(i)
  print("hello")
  print("korea")

  continue
  print("world")
0
hello
korea
1
hello
korea
2
hello
korea


 

 

특정조건에서 추가 출력할때

i = 0

for i in range(4):        
  print(i)
  print("hello")
  print("korea")
  
  if i == 1:          # i값이 1과 같으면 world도 출력한다. 
    print("world")
0
hello
korea
1
hello
korea
world             # i값이 추가 출력된 부분
2
hello
korea
3
hello
korea

반응형

'Programing > Python' 카테고리의 다른 글

비교 연산자_True / False  (0) 2019.08.09
반복문_while  (0) 2019.08.08
반복문_for, range  (0) 2019.08.08