def palindromes(string): reversed = string[::-1] if reversed == string: return True else: return False

Built With

Share this project:

Updates