how to compra vales on lists python

Solutions on MaxInterview for how to compra vales on lists python by the best coders in the world

showing results for - "how to compra vales on lists python"
Caterina
13 Jul 2019
1# ordena>>> outra_lista = [2, 4, 3, 5, 1, 6]>>> outra_lista.sort()# imprime lista ordenanda>>> print(outra_lista)[1, 2, 3, 4, 5, 6]