The following function is given: def important_function(): pass What attribute of the function stores its name as a string?
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__