본문 바로가기
python/python 수업

p130 나무 10번찍기 if while

by sj0020 2020. 8. 17.
hit=0
while hit<10:
    hit+=1
    print("you hit tree %d times" %hit)
    if hit == 10:
        print ("tree fallen")

'python > python 수업' 카테고리의 다른 글

p142 for i in range  (0) 2020.08.17
p139 for i in ~ / format  (0) 2020.08.17
구구단 while  (0) 2020.08.17
p136 continue 1-10까지 숫자중 홀수만 출력  (0) 2020.08.17
p134 커피자판기 while if elif else break  (0) 2020.08.17