📅  最后修改于: 2022-03-11 14:57:42.643000             🧑  作者: Mango
Docstring Standard
A documentation string (docstring) is a string that describes a module, function, class, or method definition. The docstring is a special attribute of the object (object.__doc__) and, for consistency, is surrounded by triple double quotes, i.e.:
"""This is the form of a docstring.
It can be spread over several lines.
"""