Open In App

Python-Quizzes | Python List Quiz | Question 1

Like Article
Like
Save
Share
Report

Question 1: Find the output of the following program:




nameList = ['Harsh', 'Pratik', 'Bob', 'Dhruv'
  
pos = nameList.index("GeeksforGeeks"
  
print (pos * 3)


(A) GeeksforGeeks GeeksforGeeks GeeksforGeeks
(B) Harsh
(C) Harsh Harsh Harsh
(D) ValueError: ‘GeeksforGeeks’ is not in list


Answer: (D)

Explanation: The task of the index is to find the position of a supplied value in a given list. In the above program the supplied value is “GeeksforGeeks” and the list is nameList. As GeeksforGeeks is not present in the list, an exception is thrown.

Quiz of this Question


Last Updated : 26 Oct, 2020
Like Article
Save Article
Share your thoughts in the comments
Similar Reads