In Python, the print(__doc__) prints the module docstring. If there is no docstring specified, then __doc__ defaults to None.
A docstring is nothing but a string literal which is the very first statement in a module, function, class, or method definition.