2021
06-19
06-19
python实现过滤敏感词
简述:关于敏感词过滤可以看成是一种文本反垃圾算法,例如 题目:敏感词文本文件filtered_words.txt,当用户输入敏感词语,则用星号*替换,例如当用户输入「北京是个好城市」,则变成「**是个好城市」 代码:#coding=utf-8deffilterwords(x):withopen(x,'r')asf:text=f.read()printtext.split('\n')userinput=raw_input('myinput:')foriintext.split('\n'):ifiinuserinp...
继续阅读 >