Help
Create DocString
# module.py

"""A brief description of the module
"""

def module_func():
    """Function docstring
    """
    pass
            
Access Help
# __doc__
import module
print(module.__doc__)
print(module.module_func.__doc__)
            
# help() function
help(module)
help(module.module_func)