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