Open In App
Related Articles

Python-Quizzes | Python String Quiz | Question 17

Improve Article
Improve
Save Article
Save
Like Article
Like

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

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 : 18 Sep, 2020
Like Article
Save Article
Previous
Next
Similar Reads