I have a list and once I sorted it to find the "biggest value", I need to display in which position this number was entered.
Any idea how to do it ?
I made this code to receive and sort the list but I have no idea how to receive the initial position of the "data".
liste = []
while len(liste) != 5:
liste.append (int(input("enter number :\n")))
listeSorted = sorted(liste)
print("the biggest number is : ", listeSorted[-1])