998b6cc
1
2
3
4
5
def is_palindrome(s): return s == s[::-1] print(is_palindrome("racecar")) print(is_palindrome("hello"))