maior valor lista python

Solutions on MaxInterview for maior valor lista python by the best coders in the world

showing results for - "maior valor lista python"
Lyle
17 Apr 2017
1lista = [13, 7, 5, 4, 6, 19, 6]
2
3maior = max(lista)
4menor = min(lista)