Solution Exercise 77: python algorithm which determines the first index of the maximum of a list without using the max() method
Exercise 77 Repeat the previous exercise (Exercise 76) without using the max() method. Solution def maxList (L): # initialization of the index of the maximum of the list i =…