Intro to Python Programming
__doc__ is a special attribute in Python that provides a way to access the docstring associated with a function, module, or class. A docstring is a string literal that appears as the first statement in a Python object, serving as a brief description or documentation for that object.
congrats on reading the definition of __doc__. now let's actually learn it.