【说站】python敏感词替换
2024-11-04
26
python敏感词替换
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1、替换过程
(1)open()文件迭代器,读取文件的每行,不过这个会自动在读取的对象后面增加一个跨行符号\n
(2)判断是否有敏感词。in成员测试in
(3)将敏感词替换成***
2、实例
敏感词文本文件 filtered_words.txt,里面的内容为以下内容,当用户输入敏感词语时,则打印出 Freedom,否则打印出 Human Rights ''' def filtered_words(): user_words = input('Please input your words:') for f in open('E:/Users/summer/PycharmProjects/untitled/filtered_words.txt'): #open()文件迭代器,读取文件的每行,不过这个会自动在读取的对象后面增加一个跨行符号\n if f.rstrip() in user_words:#rstrip()可以去掉右边的跨行符 #判断是否有敏感词。in成员测试in print('Freedom') break else: print('Human Rights') if __name__ == '__main__': filtered_words() ''' # 将上述的敏感词替换成*** def filtered_words(): user_words = input('Please input your words:') for f in open('E:/Users/summer/PycharmProjects/untitled/filtered_words.txt'): #open()文件迭代器,读取文件的每行,不过这个会自动在读取的对象后面增加一个跨行符号\n fw = f.rstrip()#rstrip()可以去掉右边的跨行符 if fw in user_words:#判断是否有敏感词。in成员测试in f = len(fw) user_input = user_words.replace (fw,'***'*f) else: print(user_input) if __name__ == '__main__': filtered_words()
以上就是python敏感词替换的方法,一般来说我们是把敏感词换成星号的替换形式的。大家在处理文本有敏感词时,不妨尝试这种方法。更多Python学习指路:python基础教程
更新于:18天前赞一波!
相关文章
- 【说站】python中random模块求随机数
- 【说站】python中figure()函数画两张图
- 【说站】python中subplot函数怎么画图?
- 【说站】python异常时的语句处理
- 【说站】python列表如何传递到线程?
- 【说站】python局部作用域是什么
- 【说站】python中Queue如何通信
- 【说站】python WSGI规范是什么
- 【说站】python中进程池Pool的初始化
- 【说站】python Pool常用函数有哪些
- 【说站】python整数的进制转换
- 【说站】python如何使用send唤醒
- 【说站】python gevent的原理分析
- 【说站】python生成器创建的方法整理
- 【说站】本月编程语言排行:C语言稳居榜首,python持续上升
- 【说站】python密码生成器的使用
- 【说站】python模块如何传入参数
- 【说站】python模块的介绍和导入
- 【说站】招聘月:Python数据分析岗位迎来机遇
- 【说站】python调用函数的注意点
文章评论
评论问答