Answers for "ascending and descending order python without sort function"

12

how to sort list in descending order in python

#1 Changes list
list.sort(reverse=True)
#2 Returns sorted list
sorted(list, reverse=True)
Posted by: Guest on May-25-2020
1

order a list without sort

n = int(input("Elementos da lista = "))
lista = []

for i in range(n):
    x = int(input("Valor (0 a 9) = "))
    if (i == 0) or (x > lista[- 1]):
        lista.append(x)
    else:
        pos = 0
        while (pos < len(lista)):
            if x <= lista[pos]:
                lista.insert(pos , x)
                break
            pos = pos + 1
Posted by: Guest on November-18-2020

Code answers related to "ascending and descending order python without sort function"

Python Answers by Framework

Browse Popular Code Answers by Language