python用类实现文章敏感词的过滤方法示例


Posted in Python onOctober 27, 2019

过滤一遍并将敏感词替换之后剩余字符串中新组成了敏感词语,这种情况就要用递归来解决,直到过滤替换之后的结果和过滤之前一样时才算结束

第一步:建立一个敏感词库(.txt文本)

python用类实现文章敏感词的过滤方法示例

第二步:编写代码在文章中过滤敏感词(递归实现)

# -*- coding: utf-8 -*-
# author 代序春秋
import os
import chardet

# 获取文件目录和绝对路径
curr_dir = os.path.dirname(os.path.abspath(__file__))
# os.path.join()拼接路径
sensitive_word_stock_path = os.path.join(curr_dir, 'sensitive_word_stock.txt')


# 获取存放敏感字库的路径
# print(sensitive_word_stock_path)


class ArticleFilter(object):
  # 实现文章敏感词过滤
  def filter_replace(self, string):
    # string = string.decode("gbk")
    #  存放敏感词的列表
    filtered_words = []
    #  打开敏感词库读取敏感字
    with open(sensitive_word_stock_path) as filtered_words_txt:
      lines = filtered_words_txt.readlines()
      for line in lines:
        # strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
        filtered_words.append(line.strip())
    # 输出过滤好之后的文章
    print("过滤之后的文字:" + self.replace_words(filtered_words, string))

  # 实现敏感词的替换,替换为*
  def replace_words(self, filtered_words, string):
    #  保留新字符串
    new_string = string
    #  从列表中取出敏感词
    for words in filtered_words:
      # 判断敏感词是否在文章中
      if words in string:
        # 如果在则用*替换(几个字替换几个*)
        new_string = string.replace(words, "*" * len(words))
    # 当替换好的文章(字符串)与被替换的文章(字符串)相同时,结束递归,返回替换好的文章(字符串)
    if new_string == string:
      #  返回替换好的文章(字符串)
      return new_string
    # 如果不相同则继续替换(递归函数自己调用自己)
    else:
      #  递归函数自己调用自己
      return self.replace_words(filtered_words, new_string)


def main():
  while True:
    string = input("请输入一段文字:")
    run = ArticleFilter()
    run.filter_replace(string)
    continue


if __name__ == '__main__':
  main()

运行结果:

python用类实现文章敏感词的过滤方法示例

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中装饰器的一个妙用
Feb 08 Python
Python中AND、OR的一个使用小技巧
Feb 18 Python
python下os模块强大的重命名方法renames详解
Mar 07 Python
Python中的错误和异常处理简单操作示例【try-except用法】
Jul 25 Python
Python实现PS滤镜功能之波浪特效示例
Jan 26 Python
NumPy 如何生成多维数组的方法
Feb 05 Python
Python numpy.array()生成相同元素数组的示例
Nov 12 Python
Python3 批量扫描端口的例子
Jul 25 Python
python实现npy格式文件转换为txt文件操作
Jul 01 Python
Python使用shutil模块实现文件拷贝
Jul 31 Python
python中sys模块的介绍与实例
Apr 17 Python
用Python实现屏幕截图详解
Jan 22 Python
通过字符串导入 Python 模块的方法详解
Oct 27 #Python
python实现树的深度优先遍历与广度优先遍历详解
Oct 26 #Python
python图的深度优先和广度优先算法实例分析
Oct 26 #Python
python单例模式原理与创建方法实例分析
Oct 26 #Python
Python aiohttp百万并发极限测试实例分析
Oct 26 #Python
python实现淘宝购物系统
Oct 25 #Python
DJANGO-URL反向解析REVERSE实例讲解
Oct 25 #Python
You might like
Zend Guard使用指南及问题处理
2015/01/07 PHP
PHP中功能强大却很少使用的函数实例小结
2016/11/10 PHP
php+redis实现多台服务器内网存储session并读取示例
2017/01/12 PHP
PHP Laravel 上传图片、文件等类封装
2017/08/16 PHP
自用js开发框架小成 学习js的朋友可以看看
2010/11/16 Javascript
JSON辅助格式化处理方法
2013/03/26 Javascript
关于jquery.validate1.9.0前台验证的使用介绍
2013/04/26 Javascript
jQuery中parents()和parent()的区别分析
2014/10/28 Javascript
javascript文本框内输入文字倒计数的方法
2015/02/24 Javascript
js实现TAB切换对应不同颜色的代码
2015/08/31 Javascript
详解微信小程序入门五: wxml文件引用、模版、生命周期
2017/01/20 Javascript
详解ES6中的代理模式——Proxy
2018/01/08 Javascript
Vue自定义指令写法与个人理解
2019/02/09 Javascript
Openlayers显示瓦片网格信息的方法
2020/09/28 Javascript
VUE+Element实现增删改查的示例源码
2020/11/23 Vue.js
Python中删除文件的程序代码
2011/03/13 Python
TensorFlow在MAC环境下的安装及环境搭建
2017/11/14 Python
Python绘制3D图形
2018/05/03 Python
Python面向对象之继承和多态用法分析
2019/06/08 Python
opencv 获取rtsp流媒体视频的实现方法
2019/08/23 Python
MNIST数据集转化为二维图片的实现示例
2020/01/10 Python
Python基于pyjnius库实现访问java类
2020/07/31 Python
Python爬虫之Selenium警告框(弹窗)处理
2020/12/04 Python
美国宠物商店:Wag.com
2016/10/25 全球购物
经济实惠的豪华背包和行李袋:Packs Project
2018/10/17 全球购物
彪马土耳其官网:PUMA土耳其
2019/07/14 全球购物
超级英雄、电影和电视、乐队和音乐T恤:Loud Clothing
2019/09/01 全球购物
财务部岗位职责
2013/11/19 职场文书
机关工会开展学习雷锋活动总结
2014/03/01 职场文书
商场主管竞聘书
2014/03/31 职场文书
体育教师求职信
2014/05/24 职场文书
少先队活动总结
2014/08/29 职场文书
财务总监岗位职责
2015/02/03 职场文书
岗位聘任报告
2015/03/02 职场文书
使用python+pygame开发消消乐游戏附完整源码
2021/06/10 Python
一篇文章带你了解Python和Java的正则表达式对比
2021/09/15 Python