cnt 변수를 이용해 문자를 10개 세고 꽉 차면 다음 줄로 내려간다.
n = list(input()) cnt=0 for i in n: print(i, end='') cnt+=1 if cnt==10: print("") cnt=0