본문 바로가기
python/python 수업

구구단 while

by sj0020 2020. 8. 17.
dan = 2
i = 1

while dan<10:
    while i<10:
        i += 1
        print("%d x %d = %d" %(dan, i, (dan*i)))
    dan+=1
    i=0

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

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