Python/예제
[파이썬 예제] 구구단 만들기 - for문
Fullyalive
2017. 8. 13. 21:38
for i in range(1, 10):
for j in range(1, 10):
print("%d * %d = %d" % (i, j, i * j))