Python 字符串关键字过滤

Posted on 2015-05-10 17:08  Maples7  阅读(2562)  评论(0编辑  收藏  举报

问题:
把给定字符串中的关键字用与关键字等长的“*”串代替。

 


 

 

Solution:

方法1:

  string 中的 replace 函数

 

方法2:

1 def censor(text, word):
2     words = text.split(word)
3     return ("*"*len(word)).join(words)