"반복문" 하면 for문이 먼저 생각나시나요? 아니면 while문?😁
반복해야 하는 횟수가 있을 때, 물론 for문을 사용할 수 있습니다.
cnt = int(input()) for i in range(cnt) : ...
while문을 이용해볼까요?
cnt = int(input()) while cnt > 0 : ... cnt -= 1