ispalindrome python code example
Example 1: Check if a string is lapindrome or not in Python
s=input()
s1,s2='',''
if(len(s)%2==0):
s1=s[:len(s)
s2=s[len(s)
else:
s1=s[:len(s)
s2=s[len(s)
l1=list(s1)
l2=list(s2)
l1.sort()
l2.sort()
s1=str(l1)
s2=str(l2)
if(s1==s2):
print('YES')
else:
print('NO')
Example 2: palindrome words python
mes=input("Enter the word and see if it is palindrome ")
if mes==mes[::-1]:
print("This word is palindrome")
else:
print("This word is not palindrome")
Example 3: string palindrome in python
checking palindrone program