Find the output of the following program:
nameList = ['Harsh', 'Pratik', 'Bob', 'Dhruv']
pos = nameList.index("GeeksforGeeks")
print (pos * 3)
GeeksforGeeks GeeksforGeeks GeeksforGeeks
Harsh
Harsh Harsh Harsh
ValueError: \'GeeksforGeeks\' is not in list
This question is part of this quiz :
Python List Quiz