Palindrome

Runic911 runic911 at aol.com
Wed Nov 12 22:31:35 EST 2003


Does anyone know how i can fix my Palindrome program?

s = raw_input('Enter a String: ')
punctuation = '%$!*.,-:? ;()\'\"\\'
i = 0
h = 0
t = 0
p = ''
z = 0
while s!= ' ':
    while i <= len(s) - 1:
        punct = s[i]
        if punctuation.find(punct) == -1:
            p = p + punct
        i = i + 1
        t = p.lower()
        t[h] == t[len(t)-1-h]




More information about the Python-list mailing list