str=”amalaylam”
flag=0
for i, c in enumerate(str):
print (i,c,ascii(c),str.count(c))
if (str.count(c))%2 != 0:
flag=flag+1;
if flag>1:
print(” Not palindrome”)
break;
continue;
if flag<=1:
print(” palindrome”)
Posts Tagged ‘Find Whether A String Could be Palindrome or Not’
Python: Find Whether A String Could be Palindrome or Not
Posted by Pramod Singla on May 14, 2018
Posted in Interview Questions, Python | Tagged: Find Whether A String Could be Palindrome or Not, pallindorme, Python | Leave a Comment »