0w0

[BASIC] 파이썬 continue break 본문

Coding/Python

[BASIC] 파이썬 continue break

0w0 2020. 11. 25. 17:05
728x90
반응형
# continue break
# continue : 반복문의 마지막까지 가지않고 처음으로 이동
# break : 반복문을 끝내버림

absent=[2,5] # 결석
no_book=[8] # 책없음

for student in range(1,11): # 학생1~10
    if student in no_book:
        print("수업 종료 {0}는 교무실".format(student))
        break

    if student in absent:
        print("결석자 : {0}".format(student))
        continue

    print("{0}는 출첵".format(student))


# 출력형태
C:\Users\0w0\Anaconda3\envs\pytest\python.exe C:/Users/0w0/PycharmProjects/pytest/test.py
1는 출첵
결석자 : 2
3는 출첵
4는 출첵
결석자 : 5
6는 출첵
7는 출첵
수업 종료 8는 교무실

Process finished with exit code 0
728x90
반응형

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

[BASIC] 파이썬 함수(function)  (0) 2020.12.05
[BASIC] 파이썬 한줄for문  (0) 2020.11.25
[BASIC] 파이썬 while문  (0) 2020.11.25
[BASIC] 파이썬 for문  (0) 2020.11.24
[BASIC] 파이썬 if문  (0) 2020.11.24
Comments