在像everybody! eat! eat eat eat!
我这样的句子中,只需要!
替换最后一个,而不需要替换其他的。
q = raw_input("English: ")
qq = str(q.isspace())
e = ''
while q != e:
q =q.replace("i", "ee")
q =q.replace("!", ". bork bork bork!")
q =q.replace("th","z")
print q
q = raw_input("English: ")