Question: Write a function to find the index of the maximum of a list. Use a for loop, and something like range(len(input_list)) def find_max_index(input_list): if you
Write a function to find the index of the maximum of a list. Use a for loop, and something like "range(len(input_list))" def find_max_index(input_list): if you pass in [1,2,10,3,2,0] it should return 2. Test and show that it works.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
