numeros = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] filtro = filter(lambda x: x > 2 and x % 2 == 0, numeros) print(list(filtro)) # Saída: [4, 6, 8, 10]