Can anybody help me and tells me what is the thing that is missing
class Palindrome:
@staticmethod
def is_palindrome(word):
copy_ = word[-1:]
if word == copy_:
return True
else:
return False
print(Palindrome.is_palindrome("deleveled"))