Posts by soaresde • 1 point
1 post
-
-6
votes2
answers51
viewsQ: Python- I need to make an application that receives float values and organize them without using . Sort
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…