numeros = [1, 3, 6, 10] maiores_que_cinco = [n for n in numeros if n > 5] print(maiores_que_cinco) # Saída: [6, 10]