使用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對象,比如<filter object at 0x000000000251C978>,后面那串數字是對象引用地址。
可以使用list(words)轉換。
新聞熱點
疑難解答