Advertisement
plarmi

work1_7

May 11th, 2023
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. def is_palindrome(string):
  2.     return string == string[::-1]
  3.  
  4. print(is_palindrome('abba'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement