문자열이 다 빌때까지 제거하며 더해줬다.
def read_vertical(s):
answer = ''
cnt = 0
while cnt <= 15:
for string in s:
if string:
answer += string.pop(0)
cnt+=1
return answer
for test in range(1, int(input())+1):
strings = list(list(input()) for _ in range(5))
print(f'#{test} {read_vertical(strings)}')
'practivceAlgorithm > swexpertacademy' 카테고리의 다른 글
[SWEA][Pyhton] 1219 길찾기 (0) | 2021.08.17 |
---|---|
[SWEA][Python] 6485 삼성시의 버스노선 (0) | 2021.08.15 |
[SWEA][Python] 4408 자기방으로 돌아가기 (0) | 2021.08.15 |
[SWEA][Python] 1961 숫자배열회전 (0) | 2021.08.15 |
[SWEA][Python] 1859 백만장자 프로젝트 (0) | 2021.08.15 |