print("Enter String: ", end="") text = input() print("Enter a Word to Delete: ", end="") word = input() wordlist = text.split() if word in wordlist: text = text ...
確定! 回上一頁