这两段程序的输出结果为什么不一样,关键在于0元素
a = list(filter(lambda x : x if (x % 3 == 0) else None,range(0,100)))print(a)
c =
print(c) 第一段代码:
如果 x 为 0,由于 0 if (0 % 3 == 0) else None 的值为 0,而 0 的值为 False,所以 filter 会过滤掉 0。 # filter 只根据 lambda 的返回值 True 或者 False 进行筛选,而不是根据具体的值,所以 lambda 返回真或假就足够了
# 你的方法0被排除的原因是:当x为0的时候,返回0会被认为是False,0就被排除了
a = list(filter(lambda x : True if (x % 3 == 0) else False,range(0,100)))
print(a)
c =
print(c)
页:
[1]