# for 반복문은 순서대로 반복실행된다.(리스트, 튜플, 딕셔너리, 셋, 문자열)
friends = ['라이언', '어피치', '네오', '무지']
# Simple for loop
# for c in friends:
# print('현재 캐릭터: ', c)
# Break out
# for c in friends:
# if c == 'Janet':
# break
# print('현재 캐릭터: ', c)
# Continue
# for c in friends:
# if c == '네오':
# continue
# print('현재 캐릭터: ', c)
# Range
# for i in range(len(friends)):
# print('현재 캐릭터: ', friends[i])
# for i in range(0, 11):
# print('Number ', i)
# While 반복문은 조건식이 true 이면 계속 반복
count = 0
while count <= 10:
print('Count: ', count)
count += 1