[python]如何删除除单个单词以外的所有内容?

时间:2020-10-16 19:57:52

标签: python python-3.x split

x = str(input("what do you want to leave: "))
rices = str(input('the text you want to delete: ').split(x, -1))
riclol = str(input('enter where you want to remove the text you typed above: ').split(rices))
print(riclol.replace(rices, " "))

我尝试了split方法在其中插入一个字符串,但是它没有读取它,只是输出了我再次编写的文本。它应该从下一个文本中删除选定的文本。然后在第二个句子中,它需要完全删除第二个文本中的所有其他句子,即3个文本,以便输出写在第一行中的内容

我希望通过从2中删除文本来在第1行中输入的内容显示在3中

0 个答案:

没有答案