-Code
for _ in range(int(input())):
line = input()
if '.' in line:
d, m, y = map(int, line.split('.'))
print(f"{d:02}.{m:02}.{y:04} {m:02}/{d:02}/{y:04}")
else:
m, d, y = map(int, line.split('/'))
print(f"{d:02}.{m:02}.{y:04} {m:02}/{d:02}/{y:04}")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32297번 문자열을 만들어요 (1) | 2024.09.22 |
---|---|
[백준/파이썬] 32326번 Conveyor Belt Sushi (0) | 2024.09.21 |
[백준/파이썬] 10410번 Eligibility (0) | 2024.09.19 |
[백준/파이썬] 20216번 Ducky Debugging (0) | 2024.09.18 |
[백준/파이썬] 32306번 Basketball Score (1) | 2024.09.17 |