지나가던 개발자

[Python] 백준 10174번(팰린드롬) 문제 풀이 본문

PS/Python

[Python] 백준 10174번(팰린드롬) 문제 풀이

KwonYongHyeon 2022. 12. 10. 22:25

 

def is_palindrome(a):
    return a == a[::-1]

for i in range(int(input())):
    if is_palindrome(input().lower()):
        print("Yes")
        continue
    print("No")
Comments