Report Bug
Qus : Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5)?
Qusमान लीजिए कि list1 [3, 4, 5, 20, 5] है, list1.index (5) क्या है?

A. 0
B. 1
C. 4
D. 2


Solution
D. 2



Explanation
Index method return the index of search element which first occurs.



Report Bug