【说站】python敏感词替换
2024-11-04
69
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基础教程
更新于:2个月前赞一波!3
相关文章
- 【说站】python自定义日志如何实现
- 【说站】python有哪些注释的种类
- 【说站】python中__new__的重写
- 【说站】python如何解决初始化执行次数
- 【说站】python错误类型捕获的方法
- 【说站】python数据结构堆的介绍
- 【说站】python参数调用的注意点
- 【说站】python Pandas读取数据文件的优点
- 【说站】python中in和is的区分
- 【说站】python异常中常见关键字
- 【说站】python os.path.join()函数的使用
- 【说站】python如何使用skimage包提取图像
- 【说站】python confusion_matrix()是什么
- 【说站】python中os.path.join()函数是什么
- 【说站】python中有哪些比较操作
- 【说站】python字符串的用法总结
- 【说站】python列表数据如何增加和删除
- 【说站】python解释器的多种使用
- 【说站】python多行注释的方法整理
- 【说站】python列表有哪些特点
文章评论
评论问答