📜  python 最佳文档字符串格式 - Python 代码示例

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

代码示例1
"""
This is an example of Google style.

Args:
    param1: This is the first param.
    param2: This is a second param.

Returns:
    This is a description of what is returned.

Raises:
    KeyError: Raises an exception.
"""