In Python, __doc__ is a special attribute that contains the documentation string for a module, class, function, or method. The documentation string is a brief description of the object and is often used to provide documentation for the object in the Python documentation.
Sample function: abs()
print(abs.__doc__)
Output:
Return the absolute value of the argument.