백준 2739번| Python - 구구단

bj

풀이

n = int(input())
for i in range(1, 10):
    print(n, '*', i, '=', n*i)
  1. 파이썬 반복문을 처음 사용해보았습니다. 반복문 형식이나 print 작성 방식이 아직 손에 익지 않네요.

comments powered by Disqus