c = filter(lambda x: x>=3, map(lambda x: x+x, (1, 2, 3, 4)))
print(list(c)) Post #72
349
Что выведет код?
MA Machinelearning tests @machinelearningtest · 661 subscribers c = filter(lambda x: x>=3, map(lambda x: x+x, (1, 2, 3, 4)))
print(list(c))