728x90
https://www.acmicpc.net/problem/9093
[::-1]를 이용한 풀이
import sys
t = int(sys.stdin.readline())
for _ in range(t):
str = sys.stdin.readline().rstrip()
ans = []
for i in str.split():
ans.append(i[::-1])
print(' '.join(ans))
reversed함수를 사용한 풀이
import sys
t = int(sys.stdin.readline())
for _ in range(t):
str = sys.stdin.readline().rstrip()
ans = []
for i in str.split():
ans.append(''.join(reversed(i)))
print(' '.join(ans))
공부를 하고 나서 2번째 풀이를 만들 수 있었다.
https://hgk5722.tistory.com/227
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 11721 파이썬(python) : 열 개씩 끊어 출력하기 (0) | 2022.07.18 |
---|---|
[백준] 17413 파이썬(python) : 단어 뒤집기 2 (0) | 2022.07.18 |
[백준] 9086 파이썬(python) : 문자열 (0) | 2022.07.18 |
[백준] 1264 파이썬(python) : 모음의 개수 (0) | 2022.07.18 |
[백준] 2744 파이썬(python) : 대소문자 바꾸기 (0) | 2022.07.18 |