numeros = [1, 6, 3, 8, 4, 10] maiores_que_cinco = [n for n in numeros if n > 5] print(maiores_que_cinco)