DocstringApplies to: pythonA docstring is a string placed at the start of a function, class, or module to explain what it does. def area(r): """Return circle area.""" return 3.14159*r*r See also: function, class