首頁  >  文章  >  後端開發  >  python過濾掉字串陣列中某個敏感詞

python過濾掉字串陣列中某個敏感詞

伊谢尔伦
伊谢尔伦原創
2017-04-29 10:10:513952瀏覽

使用filter函數,實作一個條件判斷函數即可。

例如想過濾掉字串陣列中某個敏感詞,示範程式碼如下:

#filter out some unwanted tags  
def passed(item):  
    try:  
       return item != "techbrood" #can be more a complicated condition here  
    except ValueError:  
       return False  
         
org_words = [["this","is"],["demo","from"],["techbrood"]]         
words = [filter(passed, item) for item in org_words]

注意Python2.x和Python3.x對於filter/map的處理並不相容,在Python2 .x裡面直接回傳一個list.

在Python3.x裡回傳一個iterable對象,例如9511eb37ecd99d90ad6638231e83323d,後面那串數字就是物件參考位址。

可以使用list(words)轉換。

以上是python過濾掉字串陣列中某個敏感詞的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn