본문 바로가기

알고리즘/백준-파이썬

[백준] 9093번 (python 파이썬)

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

 

9093번: 단어 뒤집기

첫째 줄에 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있으며, 문장이 하나 주어진다. 단어의 길이는 최대 20, 문장의 길이는 최대 1000이다. 단어와 단어 사이에는

www.acmicpc.net

 

import sys

testcase = int(input())
for i in range(testcase):
    s = sys.stdin.readline().strip()
    print(" ".join(list(map(lambda word: word[::-1], s.split()))))