0
How it work?
def func(alfa): beta = list(map(lambda x: x - 1, alfa)) return len(list(filter(lambda y: y % 3 == 0, beta))) print(func(range(1, 10)))
2 Respostas
0
Hello, thank you.
Maybe you can explain how work, what take - def func(alfa). And what take x, y?
I dont understand, rang() go to what?