def palindromes(string): reversed = string[::-1] if reversed == string: return True else: return False Built With python
Updates Private user started this project — Apr 26, 2024 10:49 PM EDT Leave feedback in the comments! Log in or sign up for Devpost to join the conversation.
Private user started this project — Apr 26, 2024 10:49 PM EDT Leave feedback in the comments! Log in or sign up for Devpost to join the conversation.
Log in or sign up for Devpost to join the conversation.