Open In App
Related Articles

Python-Quizzes | Python List Quiz | Question 1

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 26 Oct, 2020
Like Article
Save Article
Similar Reads