把 all_urls 这个list 的每一个 值 ,进行前面的表达式判断
list_x = [1,0,1,0,0,1]
r = filter(lambda x: True if x==1 else False,list_x )
print(list(r))