numeros = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] filtro = filter(lambda x: x > 2, numeros) mapeamento = map(lambda x: x * 2, filtro) print(list(mapeamento)) # Saída: [6, 8, 10, 12, 14, 16, 18, 20]