- 학습목표
1. 반복문에서 사용되는 break, continue 구문을 활용할 수 있다.
2. 반복문과 조건문을 응용할 수 있다.
1. break문
반복문을 중간에 나가고 싶을 때는 break문을 사용하면 된다.
2. continue문
반복문 사용 중 특정 경우만 건너뛰고 싶을 때는 continue문을 사용하면 된다.
3. 제어문 실습
- 3명의 사원이 있고 이 정보는 딕셔너리의 리스트로 존재
- ceo인 경우를 제외하고 사원중에 나이가 30 이상인 사람 수 세기
emp = []
emp.append({'name':'taehwa', 'age':30, 'position':'manager'})
emp.append({'name':'yongseong', 'age':28, 'position':'intern'})
emp.append({'name':'jungeun', 'age':32, 'position':'ceo'})
person_count = 0
for person in emp:
print(person)
if person['position'] == 'ceo':
print('pass ceo')
continue
if person['age'] >= 30:
person_count = person_count + 1
print(person_count)
KPU : 파이썬을 활용한 프로그래밍 과정