알고리즘7 [백준] 9093_단어뒤집기 import sys input = sys.stdin.readline n = int(input()) for i in range(n): sentence = input().split() new_sentence = [] for word in sentence: reversed_word = word[::-1] new_sentence.append(reversed_word) print(" ".join(new_sentence)) 파이썬 문자열 뒤집기. 인덱스 활용. - word 가 'abcde' 이면, word[::-1] 은 'edcba'이다. - word[3:0:-1] 은 3번 인덱스부터 1번 인덱스까지 (0번 인덱스가 아님 주의!) 거꾸로된 'dcb' 이다. - word[3::-1] 은 3번 인덱스부터 끝까지 (0번.. 2021. 11. 2. 이전 1 2 다음