我只是 Python 的新手。我有这个算法来看看一个词是不是回文。
def isPalindrome(s):
def toChars(s):
s = s.lower()
ans = ''
for c in s:
if c in 'abcdefghijklmnopqrstuvwxyz':
ans = ans + c
return ans
def isPal(s):
if len(s) <= 1:
return True
else:
return s[0] == s[-1] and isPal(s[1:-1])
return isPal(toChars(s))
我想实现这样的事情:
s=str(raw_input('Enter a word with quotes: '))
我想被要求输入一个单词,因为现在,运行我的代码的唯一方法是在 shell 中调用它。
PS:对不起我的英语。