このコードはほぼ完成しましたが、大文字と小文字の「t」をスペースに置き換えることができません。私のコードのフォーマットは同じはずですが、「t」をスペースに置き換えるのに助けが必要です。たとえば、「The book on the table thttg」は「he book on he able h g.」のようになります。したがって、ほとんどの場合、「t」は非表示にする必要があります。
def remoeT(aStr):
userInput = ""
while True:
string = raw_input("Enter a word/sentence you want to process:")
if string == "Quit":
return userInput
userInput = userInput + string
if aStr != False:
while "t" in userInput:
index = userInput.find("t")
userInput = userInput[:index] + userInput[index+1:]
while "T" in userInput:
index = userInput.find("T")
userInput = userInput[:index] + userInput[index+1:]