Posts by Lucas Marten • 1 point
1 post
-
0
votes4
answers21505
viewsA: How do python select the largest number of a set?
lista = [] while len(lista) < 5: lista.append(input("Digite 5 numeros: ")) print "Maior numero: ", max(lista)
1 post
0
votes4
answers21505
viewslista = [] while len(lista) < 5: lista.append(input("Digite 5 numeros: ")) print "Maior numero: ", max(lista)