我已经完成了这段代码,但我无法将字母“t”——小写和大写——替换为空格。我的代码格式应该相同,但我只需要帮助用空格替换“t”。例如,“The book on the table thttg”应该看起来像“he book on heable 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:]