문제 https://www.acmicpc.net/problem/10988
코드
word = input() word1 = "".join(list(reversed(word))) if word == word1: print(1) else: print(0)
입력받은 문자를 reversed로 뒤집고 list로 만든 다음 join으로 합친 뒤 비교했다.
reversed
list
join