#10 def is_palindrome(f = ""): if f[0:] == f[::-1] : print("True") else: print("False") is_palindrome("racecar") is_palindrome("yummy")