我在python中创建了一个程序,基本上从句子中获取每个单词并将它们放入回文检查器中。我有一个函数可以删除放入句子中的任何标点符号,一个查找句子中第一个单词的函数,一个在句子的第一个单词之后获取其余单词的函数,以及一个检查回文的函数。
#sent = input("Please enter a sentence: ")#sent is a variable that allows the user to input anything(preferably a sentence) ignore this
def punc(sent):
sent2 = sent.upper()#sets all of the letters to uppercase
sent3=""#sets sent3 as a variable
for i in range(0,len(sent2)):
if ord(sent2[i])==32 :
sent3=sent3+sent2[i]
elif ord(sent2[i])>64 and ord(sent2[i])<91:
sent3=sent3+sent2[i]
else:
continue
return(sent3)
def words(sent):
#sent=(punc(sent))
location=sent.find(" ")
if location==-1:
location=len(sent)
return(sent[0:location])
def wordstrip(sent):
#sent=(punc(sent))
location=sent.find(" ")
return(sent[location+1:len(sent)])
def palindrome(sent):
#sent=(words(sent))
word = sent[::-1]
if sent==word:
return True
else:
return False
stringIn="Frank is great!!!!"
stringIn=punc(stringIn)
while True:
firstWord=words(stringIn)
restWords=wordstrip(stringIn)
print(palindrome(firstWord))
stringIn=restWords
print(restWords)
现在我正在尝试使用字符串&#34; Frank很棒!!!!&#34;但我的问题是我不知道如何阻止程序循环。该计划不断获得&#34; GREAT&#34;字符串的一部分,并将其放入回文检查器等等。我怎么让它停下来所以它只检查一次?
答案 0 :(得分:0)
你可以像那样停止它
while True:
firstWord=words(stringIn)
restWords=wordstrip(stringIn)
#if the word to processed is the same as the input word then break
if(restWords==stringIn) : break
print(palindrome(firstWord))
stringIn=restWords
print(restWords)