lista = [3, 1, 4, 1, 5, 9] lista_ordenada_invertida = list(reversed(sorted(lista))) print(lista_ordenada_invertida) # Saída: [9, 5, 4, 3, 1, 1]