There are two ways to document a module, function, or class in the code itself: comments and docstrings.
Docstrings are more functional, as they can be accessed via the help() function, while comments can only be accessed in the source code.
When should comments be used in place of docstrings?