Contact: aviboots(AT)netvision.net.il
39,933 questions
51,870 answers
573 users
lst = [4, 6, 2, 9, 8, 1, 5, 7] max_value = 0 max_index = 0 for i, n in enumerate(lst): if (n > max_value): max_value = n max_index = i print(max_value) print(max_index) ''' run: 9 3 '''
lst = [4, 6, 2, 9, 8, 1, 5, 7] max_value = max(lst) max_index = lst.index(max_value) print(max_value) print(max_index) ''' run: 9 3 '''