Open In App

Python-Quizzes | Python String Quiz | Question 17

Question 17: What is the output of the following program?




def gfgFunction(): 
    "Geeksforgeeks is cool website for boosting up technical skills"
    return 1
  
print (gfgFunction.__doc__[17:21]) 

(A) is
(B) cool
(C) website
(D) for

Answer: (B)
Explanation: There is a docstring defined for this method, by putting a string on the first line after the start of the function definition. The docstring can be referenced using the __doc__ attribute of the function. And hence it prints the indexed string.
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :