-4
Can anyone help me? I’m trying to print the 1st, 2nd and 3rd place message on the screen, but I’m not getting it. Someone has an idea?
lista = []
flag = False
for x in range(3):
tamanho = len(lista)
n = float(input("Digite um número inteiro: "))
if( tamanho > 0 ):
for y in range( tamanho ):
if ( n >= lista[y] ):
lista.insert( y, n )
break
if((x == 0) or (flag == False)):
lista.append( n )
else:
flag = False
print(lista)
print("Primeira Posição:", "Segunda Posição:", "Terceira Posição:", )
That, I need a clear message to show which number was in which position!
– wtf-diamond
You’ve helped me, thanks bro :D
– wtf-diamond