📌  相关文章
📜  使用 python 代码示例从字符串中删除特定单词

📅  最后修改于: 2022-03-11 14:45:40.793000             🧑  作者: Mango

代码示例1
#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '