上传者: 38528459
|
上传时间: 2021-11-29 10:48:56
|
文件大小: 28KB
|
文件类型: -
使用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