The following function is given: def important_function(): pass What attribute of the function stores its name as a string?

Questions & AnswersCategory: PythonThe following function is given: def important_function(): pass What attribute of the function stores its name as a string?
Geek Boy Staff asked 2 years ago

The following function is given:

def important_function():

    pass

What attribute of the function stores its name as a string
a. important_function.__code__
b. important_function.__call__
c. important_function.__class__
d. important_function.__doc__
e. important_function.__name__