码迷,mamicode.com
首页 > 编程语言 > 详细

【python小练】0012题

时间:2016-04-08 14:59:08      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

第 0012 题: 敏感词文本文件 filtered_words.txt,里面的内容 和 0011题一样,当用户输入敏感词语,则用 星号 * 替换,例如当用户输入「北京是个好城市」,则变成「**是个好城市」。

 

把上一题的代码改一下就可以咯。

 

Code:

def filtertext(x):
    with open(x, r) as f:
      text = f.read()
    userinput = input(myinput:)
    for i in text.split(\n):
        if i in userinput:
            userinput = userinput.replace(str(i), **len(i))
    print(userinput)

filtertext(word.txt)

 

结果:

myinput:我是住在北京的程序员。
我是住在**的***。

 

【python小练】0012题

标签:

原文地址:http://www.cnblogs.com/liez/p/5367656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!