for in []
반복할 리스트num = [0,1,2,3,4,5]
for no in num:
print(f"숫자: {no}")
#range
for no in range(6): # 0,1,2,3,4,5 리스트 생성
print("숫자: {0}".format(no))
# 결과
'''
숫자: 0
숫자: 1
숫자: 2
숫자: 3
숫자: 4
숫자: 5
'''
num = [1,2,3,4,5]
print(num) #[1, 2, 3, 4, 5]
# 앞에 있는 수는 for문 내부 변수
num = [i+100 for i in num]
print(num) #[101, 102, 103, 104, 105]
index = 5
while index >=1:
print("글자: {0}, 남은 횟수: {1}".format("글자", index))
index -=1
if index==0:
print("끝!")
# 결과
'''
글자: 글자, 남은 횟수: 5
글자: 글자, 남은 횟수: 4
글자: 글자, 남은 횟수: 3
글자: 글자, 남은 횟수: 2
글자: 글자, 남은 횟수: 1
끝!
'''