The following very_important_fuction() function is given. Which attribute of this function stores docstring? def very_important_fuction(): """This is a very important function that always returns 1.""" return 1
The following very_important_fuction()
function is given. Which attribute of this function stores docstring?
def very_important_fuction():
"""This is a very important function that always returns 1."""
return 1
a. very_important_function.__name__
b. very_important_function.__doc__
c. very_important_function.__class__
d. very_important_function.__repr__
e. very_important_function.__code__