A docstring is a string at the start of a function that describes what it does: python def square(n): """Return the square of n.""" return n * n Use triple quotes. The first line should be a short summary.
Python stores this in the function's __doc__ attribute. You can read any function's docstring with help(square) or print(square.__doc__). Good docstrings help others (and future you) understand your code.