Docstrings explain how to use code, and are for the users of your code.
文档说明用来解释代码是如何工作的,是写给读代码的人看的。
The main element of good Python documentation is the use of so-called "docstrings."
Python 文档之所以“优秀”的主要因素是使用所谓的“docstring”。
First, much of the work done by a concrete class is specified in the docstrings of methods.
首先,具体类所完成的大部分工作都在方法的文档字符串(docstring)中指定。
应用推荐