while 문 count = 5 while count >=0: print(str(count)+"!") count = count-1 for 문 count = [5,4,3,2,1] for x in count: print(str(x)+"!") for 문(range 명령어) count = range(10) for n in count: if(n+1)%3 == 0: print("짝!") else: print(n+1) for 문(break 명령어) word = ["혼자","공부하는","첫","프로그래밍","!"] for x in word: if x == "첫": print("첫 프로그래밍!") break print(x) for 문(continue 명령어) count = range(20) for x in count: ..