t = int(input())
for idx in range(1, t+1):
print('#{}'.format(idx), end=' ')
# 다섯개의 단어들 받아오기
words = []
for _ in range(5):
words.append(list(input()))
# 세로로 읽기
for i in range(15):
for j in range(5):
# try except을 이용해서 인덱스 에러 안나도록 해줌.
try:
print(words[j][i], end='')
except:
continue
'Algorithm > SW Expert Academy' 카테고리의 다른 글
[Python] 삼성시의 버스노선 (0) | 2021.09.16 |
---|---|
[Python] 5432. 쇠막대기 자르기 (0) | 2021.09.16 |
[Python] 4408. 자기 방으로 돌아가기 (0) | 2021.09.16 |
[Python] 1974. 스도쿠 검증 (0) | 2021.09.16 |
[Python] 1961. 숫자 배열 회전 (0) | 2021.09.16 |