지나가던 개발자

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

PS/Python

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

KwonYongHyeon 2022. 12. 10. 22:27

 

def is_palindrome(a):
    return str(a == a[::-1]).lower()
    
print(is_palindrome(input()))

 

저번에 푼 10174번 문제랑 제목이 똑같다 ㅋㅋ.

 

https://developer-next-to-you.tistory.com/307

 

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

def is_palindrome(a): return a == a[::-1] for i in range(int(input())): if is_palindrome(input().lower()): print("Yes") continue print("No")

developer-next-to-you.tistory.com

 

Comments