-6
So far I’ve managed to do the following:
lista = []
a = 1
b = 0
while a > 0:
a = float(input("Colque os valores: "))
b = b + 1
for i in range (b):
lista.append(a)
n = len(lista)
for i in range(n-1):
for j in range(n-1):
if lista[i] > lista[i+1]:
lista[i], lista[i+1] = lista[i+1], lista[i]
lista.reverse()
print("Primeiro lugar: ", lista[0], "Segundo lugar: ", lista[1], "Terceiro lugar: ", lista[2])
But the code in question is not working properly, can help me?