Python

본 토픽은 현재 준비중입니다. 공동공부에 참여하시면 완성 되었을 때 알려드립니다.

while문

num = 1
while num <= 10:
    print(num)
    num = num + 1

result:
1
2
3
4
5
6
7
8
9
10

while <조건문>:

(공백 4칸) <수행할 문장1>

              <수행할 문장2>

              . . .


treehit = 0

while treehit <10:
    
    treehit = treehit + 1
    print("hit tree %d times." % treehit)
    
    if treehit == 10:
        print("OMG.. TREE IS FALLING DOWN..")


result:
hit tree 1 times.
hit tree 2 times.
hit tree 3 times.
hit tree 4 times.
hit tree 5 times.
hit tree 6 times.
hit tree 7 times.
hit tree 8 times.
hit tree 9 times.
hit tree 10 times.
OMG.. TREE IS FALLING DOWN...

나무가 넘어갑니다..

댓글

댓글 본문
버전 관리
haerang
현재 버전
선택 버전
graphittie 자세히 보기