Python: Find Whether A String Could be Palindrome or Not

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”)

Leave a Reply

Your email address will not be published. Required fields are marked *