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

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

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