📜  numpy 样式文档字符串 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:42.643000             🧑  作者: Mango

代码示例1
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.

"""