본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#375 백준 파이썬 [9093] 단어 뒤집기

https://www.acmicpc.net/problem/9093

 

PYTHON CODE

for words in [list(map(lambda x: x[::-1], input().split())) for _ in range(int(input()))]:
    print(*words)