Python数组条件过滤filter函数使⽤⽰例
使⽤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"]]
filter过滤对象数组
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)转换。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。