溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用python怎么實現(xiàn)一個文章敏感詞過濾功能

發(fā)布時間:2021-04-14 16:25:10 來源:億速云 閱讀:669 作者:Leah 欄目:開發(fā)技術

今天就跟大家聊聊有關使用python怎么實現(xiàn)一個文章敏感詞過濾功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據(jù)這篇文章可以有所收獲。

第一步:建立一個敏感詞庫(.txt文本)

使用python怎么實現(xiàn)一個文章敏感詞過濾功能

第二步:編寫代碼在文章中過濾敏感詞(遞歸實現(xiàn))

# -*- 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):
  # 實現(xiàn)文章敏感詞過濾
  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))

  # 實現(xiàn)敏感詞的替換,替換為*
  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
    # 如果不相同則繼續(xù)替換(遞歸函數(shù)自己調用自己)
    else:
      #  遞歸函數(shù)自己調用自己
      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怎么實現(xiàn)一個文章敏感詞過濾功能

看完上述內容,你們對使用python怎么實現(xiàn)一個文章敏感詞過濾功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI