lista ordenar python code example
Example 1: ordenar lista python
lista = [13, 7, 5, 4, 6, 19, 6]
lista.sort()
Example 2: ordenar lista decrescente python
lista = [13, 7, 5, 4, 6, 19, 6]
lista.sort(reverse = True)
lista = [13, 7, 5, 4, 6, 19, 6]
lista.sort()
lista = [13, 7, 5, 4, 6, 19, 6]
lista.sort(reverse = True)