7+ Chapters
1000+ Student
8+ Capsule
6 Experts
What will be the output:
List_1 = [1, 5, 5, 5, 5, 1] max = List_1[0] Max = 0 for i in range(1, len(List_1)): if myList[i] > max: max = List_1[i] Max = i print(max)