使用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中文網其他相關文章!