Respuesta :
I hope this helps:
https://stackoverflow.com/questions/3989016/how-to-find-all-positions-of-the-maximum-value-in-a-list
Answer:
maximum=numbers.index(max(numbers))
print("Maximum is at index {}".format(maximum))
Input :
4,5,2,6,2,1
Output :
Maximum is at index 3
Explanation:
In the above program, first max() function is used to find the maximum number of the list which is an inbuilt method of python.
Then, the output of above is passed as an argument to property of a list i.e. index() which gives the index of the parameter passed in this property. Here the maximum number's index is returned by this property.
This output is stored in variable maximum and after that the index of largest number in that list is printed in next line.