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

python 实现敏感词屏蔽小程序

时间:2017-10-10 20:25:34      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:odi   image   ges   log   代码   utf-8   输出   python   put   

有一个文件,里面有一些敏感词汇,如果输入这些词,就用**代替,然后输出。
敏感词汇
dictionary.txt
文件内容:
SB,傻B,傻逼,妈,日,shabi,操,sb,金三胖

代码实现主体:

f = open(dictionary.txt, r, encoding=utf-8)
dic = f.read().split(,)
string = input("请发言:\n")
for word in dic:
    if word in string:
        count = len(word)
        string = string.replace(word, **count)
print("你说:", string)

运行结果:

技术分享

 

python 实现敏感词屏蔽小程序

标签:odi   image   ges   log   代码   utf-8   输出   python   put   

原文地址:http://www.cnblogs.com/wolfshining/p/7647247.html

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