본문 바로가기

Python 기초

14. continue, break

👉 continue, break

 

absent = [2, 5]
no_book = [7]
for student in range(1, 11):
    if student in absent:
        continue
    elif student in no_book:
        print(f"오늘 수업은 여기까지. {student}는 교무실로 따라와")
        break
    print(f"{student}, 책을 읽어봐.")

 

 

break : 조건에 맞는 문장이 나오면 프로그램 작동을 멈춘다.

continue: 프로그램이 끝나는 조건이 나올 때까지 계속 수행한다.

'Python 기초' 카테고리의 다른 글

16. 한 줄 for 문  (0) 2022.07.15
15. 리스트, 튜플, 딕셔너리  (0) 2022.07.15
13. 자료구조의 변경  (0) 2022.07.15
12. 클래스(Class) - 2 instance vs. static  (0) 2022.03.30
11. 클래스 (Class) - 1  (0) 2022.03.30